ManagementUIColorTable.CommandBarSeparatorLight 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 used for the highlight effects on the command bar.
public:
abstract property System::Drawing::Color CommandBarSeparatorLight { System::Drawing::Color get(); };
public abstract System.Drawing.Color CommandBarSeparatorLight { get; }
member this.CommandBarSeparatorLight : System.Drawing.Color
Public MustOverride ReadOnly Property CommandBarSeparatorLight As Color
Property Value
A Color object that indicates the color of the highlight effects on the command bar.
Examples
The following example demonstrates the CommandBarSeparatorLight property. This code example is part of a larger example provided for the ManagementUIColorTable class.
ListViewItem item10 = new ListViewItem();
item10.Text = "CommandBarSeparatorLight";
item10.SubItems.Add(uiService.Colors.CommandBarSeparatorLight.ToString());
item10.BackColor = uiService.Colors.CommandBarSeparatorLight;
ListView.Items.Add(item10);
Remarks
This property enables you to determine the color of the highlight effects.