Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

HyperlinkLabelControl.LinkVisited Property

Gets or sets whether to display links within a HyperlinkLabelControl as visited links.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

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

#Property Value

Type Default Description
Boolean false

true if links are displayed as visited links; otherwise, false.

#Remarks

By default, a HyperlinkLabelControl does not mark links as visited links when an end-user clicks them. However, you can manually mark all links as visited links by setting the HyperlinkLabelControl.LinkVisited property to true (for instance, using the HyperlinkLabelControl’s LabelControl.HyperlinkClick inherited event). Visited links are painted using a dedicated color (see the HyperlinkLabelControlAppearanceObject.VisitedColor property).

See Also