MinuteLabelDisplay Enumeration |
Specifies how the minute label displays.
Namespace:
Aspose.Tasks
Assembly:
Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntaxpublic enum MinuteLabelDisplay
Public Enumeration MinuteLabelDisplay
public enum class MinuteLabelDisplay
Members
| Member 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.
|
ExamplesShows how to set the minute label of project's display options (case 1).
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");
project.DisplayOptions.MinuteLabel = MinuteLabelDisplay.M;
See Also