IManagementUIService.Colors Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the color table for the user interface (UI).
public:
property Microsoft::Web::Management::Client::Win32::ManagementUIColorTable ^ Colors { Microsoft::Web::Management::Client::Win32::ManagementUIColorTable ^ get(); };
public Microsoft.Web.Management.Client.Win32.ManagementUIColorTable Colors { get; }
member this.Colors : Microsoft.Web.Management.Client.Win32.ManagementUIColorTable
Public ReadOnly Property Colors As ManagementUIColorTable
Property Value
The color table for the UI.
Examples
The following example implements this property.
// Provides the Colors to use based on the current OS settings
ManagementUIColorTable IManagementUIService.Colors {
get {
if (_colourTbl == null) {
_colourTbl = ColourTblFactory.Create();
}
return _colourTbl;
}
}