Package com.dynamicpdf.api
Class PageInformation
java.lang.Object
com.dynamicpdf.api.PageInformation
Represents a page information.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionfloatGets the height of the page.intGets the page number.floatgetWidth()Gets the width of the page.voidsetHeight(float value)sets the height of the page.voidsetPageNumber(int value)sets the page number.voidsetWidth(float value)sets the width of the page. 
- 
Constructor Details
- 
PageInformation
public PageInformation() 
 - 
 - 
Method Details
- 
getPageNumber
public int getPageNumber()Gets the page number.- Returns:
 - The page number.
 
 - 
setPageNumber
public void setPageNumber(int value)sets the page number.- Parameters:
 value- The page number.
 - 
getWidth
public float getWidth()Gets the width of the page.- Returns:
 - The width of the page.
 
 - 
setWidth
public void setWidth(float value)sets the width of the page.- Parameters:
 value- The width of the page.
 - 
getHeight
public float getHeight()Gets the height of the page.- Returns:
 - The height of the page.
 
 - 
setHeight
public void setHeight(float value)sets the height of the page.- Parameters:
 value- The height of the page.
 
 -