MinuteLabelDisplay

MinuteLabelDisplay enumeration

Specifies how the minute label displays.

public enum MinuteLabelDisplay

Values

Name Value Description
M 0 Sets the Minutes list in MS Project as m.
Min 1 Sets the Minutes list in MS Project as min.
Minute 2 Sets 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