Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

HyperlinkOptions Class

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

Namespace: DevExpress.XtraRichEdit

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

[ComVisible(true)]
public class HyperlinkOptions :
    RichEditNotificationOptions

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