PdfCompliance

PdfCompliance enumeration

Specifies the PDF compliance level to output file.

public enum PdfCompliance

Values

NameValueDescription
Pdf150PDF/15 level of compliance.
PdfA1a1PDF/A-1a level of compliance.
PdfA1b2PDF/A-1b level of compliance.

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