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