Default PDF Compliance set by ASPOSE.Cells if I don't set anything in the code?

What is the default PDF Compliance set by ASPOSE if I don't set anything in the code?

Workbook workbook = new Workbook();


//Insert a value into the A1 cell in the first worksheet

workbook.Worksheets[0].Cells[0, 0].PutValue("Testing PDF/A");


//Define PdfSaveOptions

PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();


//Save the file

workbook.Save("e:\\test\\pdf_a_compliance.pdf" , pdfSaveOptions);v

Hi,


When you don’t specify the Compliance settings, the output PDF (generated by Aspose.Cells) would be PdfCompliance.None.

Thank you.

Hi,


And, basically it would be a plain PDF file without compliance settings.

Thanks,