PointVisualizer.Color Property
Gets or sets the color used to draw the features.
Syntax
public AttributeVariable< System.Drawing.Color > Color { get; set; }
Property Value
Default: Differs depending on type. See the table below.
The color to draw with.
Default values
Class | Default value |
---|---|
PointVisualizerSet | Red, R: 255 G: 0 B: 0 |
SymbolVisualizer | Red, R: 255 G: 0 B: 0 |
TextVisualizer | Black, R: 0 G: 0 B: 0 |
Remarks
An indirect color attribute variable can be used to create a color from a string attribute.
Example
// Set Color based on the attribute "ColorAttribute"
public static void VisualizerColorFromAttribute(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 Color based on the attribute "ColorAttribute" with the default black
pointVisualizer.Color =
new IndirectAttributeVariable<Color>("ColorAttribute", Color.Black);
}
}
Platforms
Windows, Linux, Android