Skip to main content
All docs
V23.2

HyperlinkClickMode Enum

Contains values that specify how users can activate hyperlinks embedded in control headers.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public enum HyperlinkClickMode

Members

Name Description
Default

The same as the None option.

CtrlClick

A hyperlink is activated on a mouse click when the CTRL key is pressed down.

Click

A hyperlink is activated on a mouse click.

None

Do not activate a hyperlink on a mouse pointer hover or click event.

Related API Members

Remarks

You can display hyperlinks in the following control headers when HTML-inspired Text Formatting is enabled:

Vertical Grid - Hyperlink Click

The default behavior is to display hyperlinks, but restrict their activation on mouse events. Set a control’s HyperlinkClickMode property to Click or CtrlClick to allow users to activate hyperlinks. To perform actions when a hyperlink is clicked, handle the control’s HyperlinkClick event.

Data Grid API:

Tree List API:

Vertical Grid and Property Grid API:

See Also