Compliance

PdfSaveOptions.Compliance property

Gets or sets a desired compliance level for generated PDF document. Default is Pdf15.

public PdfCompliance Compliance { get; set; }

Examples

Shows how to set a desired compliance level for generated PDF document.

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

var options = new PdfSaveOptions();

// set a desired conformance level for generated PDF document
// default is <see cref="PdfCompliance.Pdf15"/> type
options.Compliance = PdfCompliance.PdfA1b;

// tune additional properties
// set the <see cref="P:Aspose.Tasks.Saving.SaveOptions.PresentationFormat" /> in which the document will be saved.
options.PresentationFormat = PresentationFormat.GanttChart;

project.Save(OutDir + "WorkWithPdfCompliance_out.pdf", options);

See Also