[]
Gets or sets the time of the last save in the local time zone.
This property is not updated automatically when the document is modified.
DateTime LastSavedTime { get; set; }
Property LastSavedTime As Date
| Type | Description |
|---|---|
| DateTime | The time of the last save in the local time zone. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
DateTime lastSavedTime = new DateTime(2024, 1, 15, 10, 30, 0);
properties.LastSavedTime = lastSavedTime;
DateTime savedTime = properties.LastSavedTime;