Limitations
Read only.
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.
public string CreatorApplication { get; }
Public ReadOnly Property CreatorApplication() As String
This example describes an easy way of using the 'TXText
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
Read only.