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