ExtendedCreationDate

Prj.ExtendedCreationDate field

Date used for calculation and reporting.

public static readonly Key<DateTime, PrjKey> ExtendedCreationDate;

Examples

Shows how to read/write Prj.ExtendedCreationDate property.

var project = new Project();

project.Set(Prj.ExtendedCreationDate, new DateTime(2020, 4, 10, 9, 0, 0));

Console.WriteLine("Extended Creation Date: " + project.Get(Prj.ExtendedCreationDate));

See Also