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