FiscalYearStart

Prj.FiscalYearStart field

Determines whether the fiscal year numbering is used.

public static readonly Key<NullableBool, PrjKey> FiscalYearStart;

Examples

Shows how to write fiscal year properties.

var project = new Project(DataDir + "WriteFiscalYearProperties.mpp");

// Set fiscal year properties
project.Set(Prj.FyStartDate, Month.July);
project.Set(Prj.FiscalYearStart, true);

// Display fiscal year properties
Console.WriteLine("Fiscal Year Start Date: " + project.Get(Prj.FyStartDate));
Console.WriteLine("Fiscal Year Numbering: " + project.Get(Prj.FiscalYearStart));

See Also