Gets the document's subject string. It is an empty string, if there is no subject saved in the loaded document.

Introduced: X13.

Syntax

public string DocumentSubject { get; }

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.DocumentSubject' property. Here, it is stored in a variable of the type 'string'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string docSubject = ls.DocumentSubject;
//...

Limitations

Read only.