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