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