ManagementUIColorTable.Hyperlink Property

Definition

When overridden in a derived class, gets the color of an active hyperlink that the user has not clicked in the command bar.

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

Property Value

A Color object that indicates the color of a link that the user has not clicked.

Examples

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

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

Remarks

This property enables you to determine the color of hyperlink text in the user interface (UI). When the user clicks a hyperlink, the color changes to the value of the HyperlinkPressed property.

Applies to