View.Legend Property
Gets or sets a map legend associated with this view.
Syntax
public Legend Legend { get; set; }
Property Value
Remarks
The map legend for a view is typically configured in Carmenta Studio. There are two ways to use a Legend object:
As metadata. When a Legend object is used only as the Legend property of a layer or a view, it will not be displayed in the map window. However, you can write application code that will access such a Legend and display in some other GUI panel. Carmenta Explorer is an application that behaves in this way: if a view or a layer with a Legend property is selected in the Layers panel, then the legend will be displayed in the Properties panel.
As part of the map window. When a Legend object is used in a ScreenLayer as one of its ScreenLayer.Elements, it will be displayed in the map window.
Example
// Set a default Legend in the 2D View
public static void SetDefaultLegend(View view, Legend defaultLegend)
{
// Set the default legend in the view
view.Legend = defaultLegend;
// Update the View
view.Update();
}
Platforms
Windows, Linux, Android