PointVisualizer.Repeat Property
Gets or sets a value determining the placement of an object along lines and polygon edges.
Syntax
public Repeat Repeat { get; set; }
Property Value
Remarks
This value defines how the placement of an object along lines and polygon edges, together with the property At. See the documentation for Repeat for more information.
Example
// Visualize the symbol/text in the middle of a line
public static void VisualizeSymbolInTheMiddleOfALine(PointVisualizer pointVisualizer)
{
// 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())
{
// Set the At property to middle of a line
pointVisualizer.At = 0.5;
// Set Repeat to NO:
// NO means, that the text/symbol is placed at a distance from the start of the
// line defined by the property PointVisualizer.At property where 0.0 means the
// start and 1.0 means the end.
pointVisualizer.Repeat = Repeat.No;
}
}
Platforms
Windows, Linux, Android