PrimaveraXmlSaveOptions

PrimaveraXmlSaveOptions constructor

Initializes a new instance of the PrimaveraXmlSaveOptions class.

public PrimaveraXmlSaveOptions()

Examples

Shows how to export the to Primavera XML file.

var project = new Project(DataDir + "project.xml");

var options = new PrimaveraXmlSaveOptions();
options.SaveRootTask = false;
project.Save(OutDir + "UsingPrimaveraXMLSaveOptions_out.xml", options);

See Also