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

Introduced: X14.

Syntax

public bool LoadDocumentBackColor { get; set; }

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
//...