IUIService::Styles Property
.NET Framework (current version)
Gets the collection of styles that are specific to the host's environment.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The dictionary can provide information from the host environment. At a minimum, this consists of the font that should be used for standard UI text, and the color to use for highlighting. These required styles are "DialogFont" and "HighlightColor".
The values for these styles may be retrieved by using the style as a key for the dictionary, accessing the dictionary using the key as an indexer. For example: (object implementing IUIService).Styles[(style name string in quotes)].
The following code example gets the dialog box font from the host environment.
// The specified IDesigner implements IUIService. System::Drawing::Font^ GetFont( IDesigner^ designer ) { System::Drawing::Font^ hostfont; // Gets the dialog box font from the host environment. hostfont = dynamic_cast<System::Drawing::Font^>(dynamic_cast<IUIService^>(designer)->Styles[ "DialogFont" ]); return hostfont; }
.NET Framework
Available since 1.1
Available since 1.1
Show: