SymbolVisualizer.Symbol Property
Gets or sets the symbol to draw.
Syntax
public AttributeVariable< Symbol > Symbol { get; set; }
Property Value
Default: Symbol.SmallPlus
The symbol that will be drawn.
Remarks
An indirect symbol attribute variable can be used to create a symbol from a string attribute.
For details, see Encoding Symbols in Strings.
Example
// Set a RasterSymbol in the SymbolVisualizer
public static void SetRasterSymbol(SymbolVisualizer symbolVisualizer,
string path, string fileName)
{
// Create ResterSymbol
RasterSymbol rasterSymbol = new RasterSymbol(0, 0, path, fileName);
// 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 RasterSymbol in the SymbolVisualizer
symbolVisualizer.Symbol = rasterSymbol;
}
}
Platforms
Windows, Linux, Android