Skip to main content
A newer version of this page is available. .

RecentHyperlinkItem.LinkVisited Property

Gets or sets whether this hyperlink should be displayed as visited.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DefaultValue(false)]
[DXCategory("Behavior")]
public bool LinkVisited { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if this hyperlink should be displayed as visited; otherwise, false.

Remarks

RecentHyperlinkItem objects provide the RecentHyperlinkItem.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 LinkVisited property.

See Also