ManagementUIColorTable.CommandBarSeparatorDark 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.
When overridden in a derived class, gets the color of the drop-shadow effects on the command bar.
public:
abstract property System::Drawing::Color CommandBarSeparatorDark { System::Drawing::Color get(); };
public abstract System.Drawing.Color CommandBarSeparatorDark { get; }
member this.CommandBarSeparatorDark : System.Drawing.Color
Public MustOverride ReadOnly Property CommandBarSeparatorDark As Color
Property Value
A Color object that indicates the color of the drop-shadow effects on the command bar.
Examples
The following example demonstrates the CommandBarSeparatorDark property. This code example is part of a larger example provided for the ManagementUIColorTable class.
ListViewItem item09 = new ListViewItem();
item09.Text = "CommandBarSeparatorDark";
item09.SubItems.Add(uiService.Colors.CommandBarSeparatorDark.ToString());
item09.BackColor = uiService.Colors.CommandBarSeparatorDark;
ListView.Items.Add(item09);
Remarks
This property enables you to determine the color of the drop-shadow effects. This property represents the dark part of the line that separates objects on the command bar.