​
​
​

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; }
​Public ReadOnly Property DocumentSubject() As String

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;
//...
​Dim ls As XTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
Dim docSubject As String = ls.DocumentSubject
'...
​

Limitations

Read only.

​