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

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);
}
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
Dim creatorApp As String = ls.CreatorApplication

If creatorApp = "" Then
    System.Windows.Forms.MessageBox.Show("A creator application is not saved in the loaded document!")
Else
    System.Windows.Forms.MessageBox.Show("The loades document has been created with the following application: " & creatorApp)
End If

Limitations

Read only.