MonthLabelDisplay

MonthLabelDisplay enumeration

Specifies how the month label displays.

public enum MonthLabelDisplay

Values

NameValueDescription
Mo0Sets the Months list in MS Project as mo.
Mon1Sets the Months list in MS Project as mon.
Month2Sets the Months list in MS Project as month.

Examples

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

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

// ...
// set how the month label is displayed
project.DisplayOptions.MonthLabel = MonthLabelDisplay.Mo;

// ...

See Also