DayLabelDisplay Enumeration |
Specifies how the day label displays.
Namespace:
Aspose.Tasks
Assembly:
Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntaxpublic enum DayLabelDisplay
Public Enumeration DayLabelDisplay
public enum class DayLabelDisplay
Members
| Member name | Value | Description |
---|
| D | 0 |
Sets the Days list in MS Project as d.
|
| Dy | 1 |
Sets the Days list in MS Project as dy.
|
| Day | 2 |
Sets the Days list in MS Project as day.
|
ExamplesShows how to set the day label of project's display options (case 1).
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");
project.DisplayOptions.DayLabel = DayLabelDisplay.D;
See Also