Specifies whether or not hypertext links are loaded. By default hypertext links are loaded.

Syntax

public bool LoadHypertextLinks { get; set; }
Public Property LoadHypertextLinks() As Boolean

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.LoadHypertextLinks' property. Here, it is stored in a variable of the type 'bool'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
bool _loadHTLinks = ls.LoadHypertextLinks;
//...
if (_loadHTLinks == true) {
System.Windows.Forms.MessageBox.Show("The Hypertext links are loaded!");
}// else ...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
Dim _loadHTLinks As Boolean = ls.LoadHypertextLinks
'...
If _loadHTLinks = True Then
    System.Windows.Forms.MessageBox.Show("The Hypertext links are loaded!")
End If
'...