Limitations
Read only.
Gets the document's creation date. It is January 1, 0001 in the Gregorian calendar, if there is no creation date saved in the loaded document.
Introduced: X13.
public System.DateTime CreationDate { get; }
Public ReadOnly Property CreationDate() As System.DateTime
This example describes an easy way of using the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
System.DateTime creationDate = ls.CreationDate;
System.Windows.Forms.MessageBox.Show("The loaded document has been created on the following date: " + creationDate.ToString());
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
Dim creationDate As System.DateTime = ls.CreationDate
System.Windows.Forms.MessageBox.Show("The loaded document has been created on the following date: " & creationDate.ToString())
Read only.