WeekLabelDisplay Enumeration |
Specifies how the week label displays.
Namespace:
Aspose.Tasks
Assembly:
Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntaxpublic enum WeekLabelDisplay
Public Enumeration WeekLabelDisplay
public enum class WeekLabelDisplay
Members
| Member name | Value | Description |
---|
| W | 0 |
Sets the Weeks list in MS Project as W.
|
| Wk | 1 |
Sets the Weeks list in MS Project as Wk.
|
| Week | 2 |
Sets the Weeks list in MS Project as Week.
|
ExamplesShows how to set the week label of project's display options (case 1).
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");
project.DisplayOptions.WeekLabel = WeekLabelDisplay.W;
See Also