LineVisualizer.LineCap Property
Gets or sets a value specifying how line ends are rendered.
Syntax
public LineCap LineCap { get; set; }
Property Value
Remarks
This property is not supported for regular 3D layers, but it can be used for the surface layers of a globe view.
Example
// Set the LineCap to Butt
public static void SetLineCapButt(LineVisualizer lineVisualizer)
{
// This property is a member of a type that might be referred to by a View
// or a GlobeView, either directly or indirectly through other objects, which means
// that you must use the Guard class to take the global configuration lock when it
// is modified to synchronize access with any running Carmenta Engine threads.
using (Guard guard = new Guard())
{
lineVisualizer.LineCap = LineCap.Butt;
}
}
Platforms
Windows, Linux, Android