[]
Gets or sets the name of the last author who saved the document.
This property is not updated automatically when the document is modified.
string LastSavedBy { get; set; }
Property LastSavedBy As String
| Type | Description |
|---|---|
| string | The name of the last author who saved the document. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.LastSavedBy = "Author";
string lastSavedBy = properties.LastSavedBy;