Click or drag to resize

MinuteLabelDisplay Enumeration

Specifies how the minute label displays.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum MinuteLabelDisplay
Members
  Member nameValueDescription
M0 Sets the Minutes list in MS Project as m.
Min1 Sets the Minutes list in MS Project as min.
Minute2 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