Gets the list of annotations associated with the PdfPage.
Gets a PdfContext for the current page.
Gets or sets a rectangle, in points, defining the visible region of default user space. When the PdfPage is displayed or printed, its contents are to be clipped (cropped) to this rectangle and then imposed on the output medium in some implementation-defined manner. Default value is @mediaBox.
Gets or sets a rectangle, in points, defining the visible region of default user space. When the PdfPage is displayed or printed, its contents are to be clipped (cropped) to this rectangle and then imposed on the output medium in some implementation-defined manner. Default value is @mediaBox.
Gets the owner PdfDocument or null, if the PdfPage is orphan.
The height of the PdfPage, in points.
Gets the reference to the object.
Gets the index of the PdfPage in the owner PdfPageCollection, or -1.
Gets the owner ObjectManager instance.
Gets or sets the number of degrees by which the PdfPage should be rotated clockwise when displayed or printed. The value is a multiple of 90.
Gets or sets the number of degrees by which the PdfPage should be rotated clockwise when displayed or printed. The value is a multiple of 90.
Gets or sets the PdfPage's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page. The value of null means that the viewer shall not advance automatically.
Gets or sets the PdfPage's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page. The value of null means that the viewer shall not advance automatically.
The width of the PdfPage, in points.
Converts specified visual coordinates (usually in the coordinate system with the origin in the top left corner of the PdfPage and the Y axis going down, see 'fromBottomLeft') to coordinates that take into account PdfPage#rotation, PdfPage#cropBox and PdfPage#mediaBox (if 'CropBox' is not specified) values. This method should be used when positioning annotations or destinations on a page. Do not use this method when drawing on 'context'.
The Point to adjust.
If true, the source coordinates' origin is in the bottom left corner of the page with Y axis going up (by default it is in the top left corner with Y axis going down).
The horizontal device resolution.
The vertical device resolution.
Converts specified visual coordinates (usually in the coordinate system with the origin in the top left corner of the PdfPage and the Y axis going down, see 'fromBottomLeft') to coordinates that take into account PdfPage#rotation, PdfPage#cropBox and PdfPage#mediaBox (if 'CropBox' is not specified) values. This method should be used when positioning annotations or destinations on a page. Do not use this method when drawing on 'context'.
The Quadrilateral to adjust.
If true, the source coordinates' origin is in the bottom left corner of the page with Y axis going up (by default it is in the top left corner with Y axis going down).
The horizontal device resolution.
The vertical device resolution.
Converts specified visual coordinates (usually in the coordinate system with the origin in the top left corner of the PdfPage and the Y axis going down, see 'fromBottomLeft') to coordinates that take into account PdfPage#rotation, PdfPage#cropBox and PdfPage#mediaBox (if 'CropBox' is not specified) values. This method should be used when positioning annotations or destinations on a page. Do not use this method when drawing on 'context'.
The Rect to adjust.
If true, the source coordinates' origin is in the bottom left corner of the page with Y axis going up (by default it is in the top left corner with Y axis going down).
The horizontal device resolution.
The vertical device resolution.
Deletes a specified text from the PdfPage.
The text to search for.
The text delete mode.
Deletes the specified text range from the PdfPage.
The text range.
The text delete mode.
Draws the PdfPage on the given context into the specified rectangle.
The target drawing context.
The X coordinate of the destination rectangle.
The Y coordinate of the destination rectangle.
The width of the destination rectangle.
The height of the destination rectangle.
Optionaloptions: DrawPdfPageOptionsThe options for the drawing the PdfPage.
Draws the PdfPage on the given context into the specified rectangle.
The target drawing context.
The destination rectangle.
Optionaloptions: DrawPdfPageOptionsThe options for the drawing the PdfPage.
Detaches the object from the ObjectManager and deallocates its memory, if possible.
Retrieves all text on the PdfPage.
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
Replaces a specified text on the PdfPage.
Note that the results may be affected by the current value of the PdfDocument#recognitionAlgorithm property.
The text to search for.
The replacement text.
Optionalfont: Font | nullThe font to use on 'newText', if null the current font will be used.
OptionalfontSize: number | nullThe font size to use on 'newText', if null the current font size will be used.
Replaces a specified text on the PdfPage.
Note that the results may be affected by the current value of the PdfDocument#recognitionAlgorithm property.
The text range.
The replacement text.
Optionalfont: Font | nullThe font to use on 'newText', if null the current font will be used.
OptionalfontSize: number | nullThe font size to use on 'newText', if null the current font size will be used.
Saves the PdfPage to a byte array in PNG format.
Optionaloptions: SaveAsImageOptionsThe options for page export.
The resulting binary data in PNG format.
Saves the PdfPage to an Image in PNG format.
Optionaloptions: SaveAsImageOptionsThe options for page export.
The resulting Image object.
Saves the PdfPage to a byte array in SVG format.
Optionaloptions: SaveAsImageOptionsThe options for page export.
The resulting data in UTF-8 encoded SVG format.
Saves the PdfPage as an SvgDocument.
Optionaloptions: SaveAsImageOptionsThe options for page export.
The resulting SvgDocument object.
Saves the PdfPage to a byte array in SVG.GZ format.
Optionaloptions: SaveAsImageOptionsThe options for page export.
The resulting binary data in SVG.GZ format.
Represents a page in a PdfDocument.