HyperlinkOptions Class
Contains settings used to define the hyperlink appearance in the Rich Text Editor.
Namespace: DevExpress.XtraRichEdit
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Related API Members
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;
Implements
Inheritance
See Also