Gets the application, which has created the document. It is an empty string, if a creator application is not saved in the loaded document.

Introduced: X13.

Syntax

public string CreatorApplication { get; }

Examples

This example describes an easy way of using the 'TXTextControl.LoadSettings.CreatorApplication' property. Here, it is stored in a variable of the type 'string'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();

string creatorApp = ls.CreatorApplication;
if (creatorApp == "") {
    System.Windows.Forms.MessageBox.Show("A creator application is not saved in the loaded document!");
    }
else {
    System.Windows.Forms.MessageBox.Show("The loaded document has been created with the following application: " + creatorApp);
}

Limitations

Read only.