Question
Saving to PDF from script - how do I set the PDF version ?
I have a script that saves my files to PDF, using the following lines:
var oaParams = GetSaveDefaultParams( );
i = GetPropIndex( oaParams, Constants.FS_FileType );
oaParams[i].propVal.ival = Constants.FV_SaveFmtPdf;
i = GetPropIndex( oaParams, Constants.FS_PDFUseDistiller );
oaParams[i].propVal.ival = 0;My customer now asks me to generate PDF 1.7 instead of the current 1.6. Does anyone know where I can set this property ?
