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

HyperlinkOptions Class

Contains settings used to define the hyperlink appearance in the Rich Text Editor.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v24.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

#Declaration

[ComVisible(true)]
public class HyperlinkOptions :
    RichEditNotificationOptions

The following members return HyperlinkOptions objects:

#Example

The code snippet below shows how to specify HyperlinkOptions properties in code:

using DevExpress.XtraRichEdit;
using DevExpress.Portable.Input;

//...
hyperlinkOptions = richEditControl.Options.Hyperlinks;

hyperlinkOptions.EnableUriCorrection = false;
hyperlinkOptions.ModifierKeys = PortableKeys.Shift;
hyperlinkOptions.ShowToolTip = true;
See Also