View.NamedStyles Property
Gets the list of named styles that can be enabled for the view.
Syntax
public NamedStyleCollection NamedStyles { get; }
Property Value
Default: Empty collection.
The list of named styles that can be enabled for the view.
Remarks
The list of supported styles is typically specified in Carmenta Studio when style support is added to the configuration. See EnableStyle for more information.
Example
public static StringCollection GetNamedStylesDisplayNames(View view)
{
StringCollection namedStylesDisplayNames = new StringCollection();
// Loop over all NamedStyles in the View
foreach (NamedStyle namedStyle in view.NamedStyles)
{
namedStylesDisplayNames.Add(namedStyle.DisplayName);
}
// Return the NamedStyles DisplayNames
return namedStylesDisplayNames;
}
Platforms
Windows, Linux, Android