[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBuiltInDocumentPropertyCollection.LastSavedTime

LastSavedTime Property

LastSavedTime

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.

Declaration
DateTime LastSavedTime { get; set; }
Property LastSavedTime As Date
Property Value
Type Description
DateTime

The time of the last save in the local time zone.

Examples
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
DateTime lastSavedTime = new DateTime(2024, 1, 15, 10, 30, 0);
properties.LastSavedTime = lastSavedTime;
DateTime savedTime = properties.LastSavedTime;