Click or drag to resize

PdfWebControlMaxPdfPageHeight Property

Namespace:  RadPdf.Web.UI
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public int MaxPdfPageHeight { get; set; }

Property Value

Type: Int32
The maximum height of a page, in pixels, allowed to be loaded; otherwise NoMaxPdfPageHeight for no maximum. The default value is NoMaxPdfPageHeight.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionMaxPdfPageHeight can not be less than 0.
Remarks

To have an effect, this property must be set before CreateDocument(String, Byte) is called.

This property will be ignored if AllowFindMatchingPdf is true and the PDF referenced by CreateDocument(String, Byte) was previously loaded.

Setting this property to NoMaxPdfPageHeight (default) will allow a PDF with any height to be loaded.

As this value is in pixels, the value of RenderDpi should be considered. For example, if MaxPdfPageHeight is 1000 and RenderDpi is 100, loading a document with an 11 inch height would cause an exception to be thrown. (Because 11 * 100 = 1100, which is greater than 1000.) But if MaxPdfPageHeight is 1000 and RenderDpi is 72, loading that same document with an 11 inch height 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 vertical pixels than MaxPdfPageHeight, an exception will be thrown.

See Also