Specifies whether or not the document background color is loaded. By default it is loaded.
Introduced: X14.
public bool LoadDocumentBackColor { get; set; }
Public Property LoadDocumentBackColor() As Boolean
This example shows a simple variant of how to use the 'TXText
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
'...