PageInfo
Contents
[
Hide
]
Inheritance: java.lang.Object
public class PageInfo
Represents the document page information.
Constructors
| Constructor | Description |
|---|---|
| PageInfo(int pageNumber, int width, int height) | Initializes a new instance of the PageInfo class. |
Methods
| Method | Description |
|---|---|
| getPageNumber() | Gets the page number. |
| getWidth() | Gets the page width. |
| getHeight() | Gets the page height. |
PageInfo(int pageNumber, int width, int height)
public PageInfo(int pageNumber, int width, int height)
Initializes a new instance of the PageInfo class.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| pageNumber | int | The page number. |
| width | int | The page width. |
| height | int | The page height. |
getPageNumber()
public int getPageNumber()
Gets the page number.
Returns: int - A zero-based integer value that represents the page number.
getWidth()
public int getWidth()
Gets the page width.
Returns: int - An integer value that represents the page width.
getHeight()
public int getHeight()
Gets the page height.
Returns: int - An integer value that represents the page height.