DayLabelDisplay

DayLabelDisplay enumeration

Specifies how the day label displays.

public enum DayLabelDisplay

Values

NameValueDescription
D0Sets the Days list in MS Project as d.
Dy1Sets the Days list in MS Project as dy.
Day2Sets the Days list in MS Project as day.

Examples

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

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

// ...
// set how the day label is displayed
project.DisplayOptions.DayLabel = DayLabelDisplay.D;

// ...

See Also