Limitations
Read only.
Gets the date the document is last modified. It is January 1, 0001 in the Gregorian calendar, if such a date is not saved in the loaded document.
Introduced: X13.
public System.DateTime LastModificationDate { get; }
Public ReadOnly Property LastModificationDate() As System.DateTime
This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
System.DateTime lastModDate = ls.LastModificationDate;
//...
Read only.