Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

HyperlinkClickEventArgs.ModifierKeys Property

Gets the modifier flags for a hyperlink click. The flags indicate which combination of CTRL, SHIFT, and ALT keys was pressed.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

public Keys ModifierKeys { get; }

Property Value

Type Description
Keys

A Keys value representing one or more modifier flags.

Remarks

Use the Modifiers property to indicate which modifier keys are pressed when the hyperlink is clicked. To determine whether a specific modifier key was pressed, use the HyperlinkClickEventArgs.Control, HyperlinkClickEventArgs.Shift and HyperlinkClickEventArgs.Alt properties. Modifier flags can be combined with a bitwise OR.

See Also