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.

Syntax

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

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.LoadImages' property. Here, it is set to 'true'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
ls.LoadImages = true;
//...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
ls.LoadImages = True
'...