[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBuiltInDocumentPropertyCollection.LastPrinted

LastPrinted Property

LastPrinted

Gets or sets the UTC time when the document was last printed.

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

The UTC time when the document was last printed.

Examples
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
DateTime lastPrinted = new DateTime(2024, 1, 15, 9, 30, 0, DateTimeKind.Utc);
properties.LastPrinted = lastPrinted;
DateTime printedTime = properties.LastPrinted;