[]
Gets or sets the document creation date in the local time zone.
This property is not updated automatically when the document is modified.
DateTime CreatedDate { get; set; }
Property CreatedDate As Date
| Type | Description |
|---|---|
| DateTime | The document creation date in the local time zone. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
DateTime createdDateValue = new DateTime(2024, 1, 15, 10, 30, 0);
properties.CreatedDate = createdDateValue;
DateTime createdDate = properties.CreatedDate;