PdfLiteSettingsMaxPdfPageWidth Property |
Namespace: RadPdf.Lite
Exception | Condition |
---|---|
ArgumentOutOfRangeException | MaxPdfPageWidth can not be less than 0. |
Setting this property to NoMaxPdfPageWidth (default) will allow a PDF with any width to be loaded.
As this value is in pixels, the value of RenderDpi should be considered. For example, if MaxPdfPageWidth is 1000 and RenderDpi is 100, loading a document with an 11 inch width would cause an exception to be thrown. (Because 11 * 100 = 1100, which is greater than 1000.) But if MaxPdfPageWidth is 1000 and RenderDpi is 72, loading that same document with an 11 inch width would not cause an exception to be thrown. (Because 11 * 100 = 792, which is less than 1000.)
If the document contains a page with more horizontal pixels than MaxPdfPageWidth, an exception will be thrown.