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