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

Syntax

public bool LoadHypertextLinks { get; set; }

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 ...