ManagementUIColorTable.TaskSectionHeader Property

Definition

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.

Applies to