TimescaleStart

Prj.TimescaleStart field

The date that the timescale in the view starts.

public static readonly Key<DateTime, PrjKey> TimescaleStart;

Examples

Shows how to set timescale start date to tune the date where the view should start.

var project = new Project(DataDir + "Project2.mpp");
project.Set(Prj.TimescaleStart, new DateTime(2012, 4, 30));

Console.WriteLine("Timescale Start: " + project.Get(Prj.TimescaleStart));

See Also