WeekLabelDisplay

WeekLabelDisplay enumeration

Specifies how the week label displays.

public enum WeekLabelDisplay

Values

NameValueDescription
W0“w” label.
Wk1“wk” label.
Week2“week” label.

Examples

Shows how to set the week label of project’s display options (case 1).

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

// ...
// set how the week label is displayed
project.DisplayOptions.WeekLabel = WeekLabelDisplay.W;

// ...

See Also