Package com.ironsoftware.ironpdf.page
Class PageInfo
- java.lang.Object
- 
- com.ironsoftware.ironpdf.page.PageInfo
 
- 
 public class PageInfo extends Object A class which represents one page of a PDF Document.
- 
- 
Constructor SummaryConstructors Constructor Description PageInfo(int pageIndex, double width, double height, double printWidth, double printHeight, PageRotation pageRotation)Instantiates a new Page info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetHeight()Gets height of the pdf page in mm.intgetPageIndex()Gets page indexPageRotationgetPageRotation()Gets page rotation.doublegetPrintHeight()Gets print height of the pdf page in printer points.doublegetPrintWidth()Gets print width of the pdf page in printer points.doublegetWidth()Gets width of the pdf page in mm.
 
- 
- 
- 
Constructor Detail- 
PageInfopublic PageInfo(int pageIndex, 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 Detail- 
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
 
 - 
getPageIndexpublic final int getPageIndex() Gets page index- Returns:
- the page index
 
 - 
getPageRotationpublic final PageRotation getPageRotation() Gets page rotation.- Returns:
- the page rotation
 
 
- 
 
-