[]
Gets or sets the UTC time when the document was last printed.
DateTime LastPrinted { get; set; }
Property LastPrinted As Date
| Type | Description |
|---|---|
| DateTime | The UTC time when the document was last printed. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
DateTime lastPrinted = new DateTime(2024, 1, 15, 9, 30, 0, DateTimeKind.Utc);
properties.LastPrinted = lastPrinted;
DateTime printedTime = properties.LastPrinted;