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