Is there a PrintScaling option in ViewerPreference in Aspose? We want to set the PrintScaling to none by default so when our PDF files are printed the ‘fit to page’ option is unchecked. (We need our document to print actual size, and we don’t want the user to have to remember to set the print scaling to none every time).
like this:
= true;
<o:p></o:p>
itextsharp looks like this:
Document.AddViewerPreference(iTextSharp.text.pdf.PdfName.PRINTSCALING,
iTextSharp.text.pdf.PdfName.NONE);
Is there an option to do this in Aspose? If not can it be added in a future version?