PageInfo
PageInfo(int, bool)
Initializes new instance of PageInfo class.
public PageInfo(int number, bool visible)
| Parameter |
Type |
Description |
| number |
Int32 |
The page number. |
| visible |
Boolean |
The page visibility indicator. |
Exceptions
| exception |
condition |
| ArgumentException |
Thrown when number is less or equal to zero. |
See Also
PageInfo(int, bool, int, int)
Initializes new instance of PageInfo class.
public PageInfo(int number, bool visible, int width, int height)
| Parameter |
Type |
Description |
| number |
Int32 |
The page number. |
| visible |
Boolean |
The page visibility indicator. |
| width |
Int32 |
The width of the page in pixels when viewing as JPG or PNG. |
| height |
Int32 |
The height of the page in pixels when viewing as JPG or PNG. |
Exceptions
| exception |
condition |
| ArgumentException |
Thrown when number is less or equal to zero. |
| ArgumentException |
Thrown when width is less or equal to zero. |
| ArgumentException |
Thrown when height is less or equal to zero. |
See Also