ManagementUIColorTable.TaskFormProgressLight 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 progress indicator.
public:
abstract property System::Drawing::Color TaskFormProgressLight { System::Drawing::Color get(); };
public abstract System.Drawing.Color TaskFormProgressLight { get; }
member this.TaskFormProgressLight : System.Drawing.Color
Public MustOverride ReadOnly Property TaskFormProgressLight As Color
Property Value
A Color object that indicates the ending color of the progress indicator.
Examples
The following example demonstrates the TaskFormProgressLight property. This code example is part of a larger example provided for the ManagementUIColorTable class.
ListViewItem item26 = new ListViewItem();
item26.Text = "TaskFormProgressLight";
item26.SubItems.Add(uiService.Colors.TaskFormProgressLight.ToString());
item26.BackColor = uiService.Colors.TaskFormProgressLight;
ListView.Items.Add(item26);
Remarks
This property enables you to determine the color of a progress indicator. A progress indicator shows the approximate percentage of completion of a task.