Limitations
Read only.
Gets the document's title. It is an empty string, if there is no title saved in the loaded document.
public string DocumentTitle { get; }
Public ReadOnly Property DocumentTitle() As String
This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string docTitle = ls.DocumentTitle;
//...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
Dim docTitle As String = ls.DocumentTitle
'...
Read only.