[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBuiltInDocumentPropertyCollection.CreatedDate

CreatedDate Property

CreatedDate

Gets or sets the document creation date in the local time zone.

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

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

The document creation date in the local time zone.

Examples
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
DateTime createdDateValue = new DateTime(2024, 1, 15, 10, 30, 0);
properties.CreatedDate = createdDateValue;
DateTime createdDate = properties.CreatedDate;