MinuteLabelDisplay

MinuteLabelDisplay enumeration

Specifies how the minute label displays.

public enum MinuteLabelDisplay

Values

NameValueDescription
M0Sets the Minutes list in MS Project as m.
Min1Sets the Minutes list in MS Project as min.
Minute2Sets the Minutes list in MS Project as minute.

Examples

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

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

// ...
// set how the minute label is displayed
project.DisplayOptions.MinuteLabel = MinuteLabelDisplay.M;

// ...

See Also