LoadOptions.PrimaveraReadOptions
Contents
[
Hide
]LoadOptions.PrimaveraReadOptions property
Gets or sets a specified instance of the PrimaveraReadOptions
class which can be used to customize the behavior of loading Primavera formats (Primavera P6 XER or Primavera P6 Xml).
public PrimaveraReadOptions PrimaveraReadOptions { get; set; }
Examples
Shows how to load Primavera project with the specified Id using <see cref=“LoadOptions” />.
var loadOptions = new LoadOptions();
var primaveraOptions = new PrimaveraReadOptions()
{
ProjectUid = 3882,
UndefinedConstraintHandlingBehavior = UndefinedConstraintHandlingBehavior.None,
PreserveUids = true
};
// set Primavera reading options
loadOptions.PrimaveraReadOptions = primaveraOptions;
var project = new Project(DataDir + "PrimaveraProject.xml", loadOptions);
Console.WriteLine("Project Name: " + project.Get(Prj.Name));
// work with the project...
See Also
- class PrimaveraReadOptions
- class LoadOptions
- namespace Aspose.Tasks
- assembly Aspose.Tasks