DurationFormat

Prj.DurationFormat field

The format for expressing the bulk duration.

public static readonly Key<TimeUnitType, PrjKey> DurationFormat;

Examples

Shows how to read/write Prj.DurationFormat property.

var project = new Project();

project.Set(Prj.DurationFormat, TimeUnitType.Day);

Console.WriteLine("Duration Format: " + project.Get(Prj.DurationFormat));

See Also