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
#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;