Share via


ManagementUIColorTable.ImageMarginGradientBegin Property

Definition

When overridden in a derived class, gets the starting color of the image margin gradient.

public:
 abstract property System::Drawing::Color ImageMarginGradientBegin { System::Drawing::Color get(); };
public abstract System.Drawing.Color ImageMarginGradientBegin { get; }
member this.ImageMarginGradientBegin : System.Drawing.Color
Public MustOverride ReadOnly Property ImageMarginGradientBegin As Color

Property Value

A Color object that indicates the starting color of the image margin gradient.

Examples

The following example demonstrates the ImageMarginGradientBegin property. This code example is part of a larger example provided for the ManagementUIColorTable class.

ListViewItem item16 = new ListViewItem();
item16.Text = "ImageMarginGradientBegin";
item16.SubItems.Add(uiService.Colors.ImageMarginGradientBegin.ToString());
item16.BackColor = uiService.Colors.ImageMarginGradientBegin;
ListView.Items.Add(item16);

Remarks

This property enables you to determine the starting 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.

Applies to