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; }
Public ReadOnly Property DocumentSubject() As String
This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string docSubject = ls.DocumentSubject;
//...
Dim ls As XTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
Dim docSubject As String = ls.DocumentSubject
'...
Read only.