Specifies whether or not images are loaded. If set to false images are displayed through a rectangle and the image's name. By default images are loaded.
public bool LoadImages { get; set; }
Public Property LoadImages() As Boolean
This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
ls.LoadImages = true;
//...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
ls.LoadImages = True
'...