Click or drag to resize

DayLabelDisplay Enumeration

Specifies how the day label displays.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum DayLabelDisplay
Members
  Member nameValueDescription
D0 Sets the Days list in MS Project as d.
Dy1 Sets the Days list in MS Project as dy.
Day2 Sets the Days list in MS Project as day.
Examples
Shows how to set the day label of project's display options (case 1).
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");

// ...
// set how the day label is displayed
project.DisplayOptions.DayLabel = DayLabelDisplay.D;

// ...
See Also