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

Syntax

public string DocumentTitle { get; }

Examples

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

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string docTitle = ls.DocumentTitle;
//...

Limitations

Read only.