Specifies whether or not the document background color is loaded. By default it is loaded.

Introduced: X14.

Syntax

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

Examples

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

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
ls.LoadDocumentBackColor = true; // is also the default value
//...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
ls.LoadDocumentBackColor = True ' is also the default value
'...