[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBuiltInDocumentPropertyCollection.LastSavedBy

LastSavedBy Property

LastSavedBy

Gets or sets the name of the last author who saved the document.

This property is not updated automatically when the document is modified.

Declaration
string LastSavedBy { get; set; }
Property LastSavedBy As String
Property Value
Type Description
string

The name of the last author who saved the document.

Examples
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.LastSavedBy = "Author";
string lastSavedBy = properties.LastSavedBy;