Skip to main content

RecentHyperlinkItem.LinkColor Property

Gets or sets the regular link color applied to this RecentHyperlinkItem before the link is activated.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Appearance")]
public Color LinkColor { get; set; }

Property Value

Type Description
Color

A Color object that is the regular RecentHyperlinkItem color.

Remarks

RecentHyperlinkItem objects provide the LinkColor and RecentHyperlinkItem.VisitedColor properties that store colors applied to these hyperlinks in their regular and visited states respectively (see the figure below).

RecentControl - Visited Hyperlink

At runtime, links change their state (and color) to ‘visited’ after they have been clicked. To do the same in code, you can specify the boolean RecentHyperlinkItem.LinkVisited property.

See Also