Specifies whether or not hypertext links are loaded. By default hypertext links are loaded.
public bool LoadHypertextLinks { get; set; }
Public Property LoadHypertextLinks() As Boolean
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 ...
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
'...