Click or drag to resize

BaselineType Enumeration

Specifies the baseline type used to calculate Variance values.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum BaselineType
Members
  Member nameValueDescription
Undefined-1 Indicates the field was not defined in original project file.
Baseline0 Indicates Baseline type.
Baseline11 Indicates Baseline1 type.
Baseline22 Indicates Baseline2 type.
Baseline33 Indicates Baseline3 type.
Baseline44 Indicates Baseline4 type.
Baseline55 Indicates Baseline5 type.
Baseline66 Indicates Baseline6 type.
Baseline77 Indicates Baseline7 type.
Baseline88 Indicates Baseline8 type.
Baseline99 Indicates Baseline9 type.
Baseline1010 Indicates Baseline10 type.
Remarks
While exporting into XML the Undefined values will be eliminated from resulting XML.
Examples
Shows how to set baseline for the project (BaselineType.Baseline).
var project = new Project(DataDir + "Project2.mpp");
// save baseline fields to the specified baseline for the entire project.
project.SetBaseline(BaselineType.Baseline);
// work with project's baselines...
See Also