Click or drag to resize

WeekLabelDisplay Enumeration

Specifies how the week label displays.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum WeekLabelDisplay
Members
  Member nameValueDescription
W0 Sets the Weeks list in MS Project as W.
Wk1 Sets the Weeks list in MS Project as Wk.
Week2 Sets the Weeks list in MS Project as Week.
Examples
Shows how to set the week label of project's display options (case 1).
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");

// ...
// set how the week label is displayed
project.DisplayOptions.WeekLabel = WeekLabelDisplay.W;

// ...
See Also