Specifies whether or not hypertext links are loaded. By default hypertext links are loaded.
public bool LoadHypertextLinks { get; set; }
This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
bool _loadHTLinks = ls.LoadHypertextLinks;
//...
if (_loadHTLinks == true) {
System.Windows.Forms.MessageBox.Show("The Hypertext links are loaded!");
}// else ...