[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DocumentProperties.CreationDate

CreationDate Property

CreationDate

Gets or sets the creation date and time of the document.

Declaration
public DateTime CreationDate { get; set; }
Public Property CreationDate As Date
Property Value
Type Description
DateTime

The creation date and time of the document.

Examples
DocumentProperties properties = new DocumentProperties();
properties.CreationDate = new DateTime(2019, 6, 24);
DateTime creationDate = properties.CreationDate;