​
​
​

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.

Syntax

​public System.DateTime LastModificationDate { get; }
​Public ReadOnly Property LastModificationDate() As System.DateTime

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.LastModificationDate' property. Here, it is stored in a variable of the type 'System.DateTime'.

​
​TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
System.DateTime lastModDate  = ls.LastModificationDate;
//...
​

Limitations

Read only.

​