PrimaveraSaveOptions Constructor |
Namespace: Aspose.Tasks.Saving
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp"); // create Primavera save options and tune them var options = new PrimaveraSaveOptions { // define prefix and suffix of an activity ActivityIdPrefix = "TEST", ActivityIdSuffix = 10000, // control renumbering of activities ActivityIdIncrement = 5, RenumberActivityIds = true }; project.Save(OutDir + "WorkWithPrimaveraSaveOptions_out.xer", options);