Layer.NamedStyles Property
Gets the list of named styles that can be enabled for the layer.
Syntax
public NamedStyleCollection NamedStyles { get; }
Property Value
Default: Empty collection.
The list of named styles that can be enabled for the layer.
Remarks
The value of this property is set differently depending on the type of layer. For OgcWmsServerLayer and OgcWmtsServerLayer, the list is initialized by querying the remote WMS or WMTS server which styles it supports.
For all other layers except CatalogLayer, the list of supported styles is typically specified in Carmenta Studio when style support is added to the configuration.
A CatalogLayer returns the list of named styles from its corresponding internal layer.
Example
// Get all NamedStyles DisplayName
public static StringCollection GetNamedStylesDisplayNames(Layer layer)
{
StringCollection namedStylesDisplayNames = new StringCollection();
// Loop over all NamedStyles in the Layer. This example assumes
// the method is called on the GUI thread which makes it safe to
// access the NamedStyles property without synchronization.
foreach (NamedStyle namedStyle in layer.NamedStyles)
{
namedStylesDisplayNames.Add(namedStyle.DisplayName);
}
// Return the NamedStyles DisplayNames
return namedStylesDisplayNames;
}
Platforms
Windows, Linux, Android