Package com.ironsoftware.ironpdf.page
Class PageInfo
java.lang.Object
com.ironsoftware.ironpdf.page.PageInfo
A class which represents one page of a PDF Document.
- 
Constructor SummaryConstructorsConstructorDescriptionPageInfo(double width, double height, double printWidth, double printHeight, PageRotation pageRotation) Instantiates a new Page info.
- 
Method SummaryModifier and TypeMethodDescriptionfinal doubleGets height of the pdf page in mm.final PageRotationGets page rotation.final doubleGets print height of the pdf page in printer points.final doubleGets print width of the pdf page in printer points.final doublegetWidth()Gets width of the pdf page in mm.
- 
Constructor Details- 
PageInfopublic PageInfo(double width, double height, double printWidth, double printHeight, PageRotation pageRotation) Instantiates a new Page info.- Parameters:
- width- the width
- height- the height
- printWidth- the print width
- printHeight- the print height
- pageRotation- the page rotation
 
 
- 
- 
Method Details- 
getWidthpublic final double getWidth()Gets width of the pdf page in mm.- Returns:
- the width
 
- 
getHeightpublic final double getHeight()Gets height of the pdf page in mm.- Returns:
- the height
 
- 
getPrintWidthpublic final double getPrintWidth()Gets print width of the pdf page in printer points.- Returns:
- the print width.
 
- 
getPrintHeightpublic final double getPrintHeight()Gets print height of the pdf page in printer points.- Returns:
- the print height
 
- 
getPageRotationGets page rotation.- Returns:
- the page rotation
 
 
-