Limitations
Read only.
Gets the document's subject string. It is an empty string, if there is no subject saved in the loaded document.
Introduced: X13.
public string DocumentSubject { get; }
This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string docSubject = ls.DocumentSubject;
//...
Read only.