Page

Page()

Initializes new instance of Page class.

public Page()

See Also


Page(int, bool)

Initializes new instance of Page class.

public Page(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


Page(int, string, bool)

Initializes new instance of Page class.

public Page(int number, string name, bool visible)
Parameter Type Description
number Int32 The page number.
name String The worksheet or page name.
visible Boolean The page visibility indicator.

Exceptions

exception condition
ArgumentException Thrown when number is less or equal to zero.

See Also


Page(int, bool, int, int)

Initializes new instance of Page class.

public Page(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


Page(int, string, bool, int, int)

Initializes new instance of Page class.

public Page(int number, string name, bool visible, int width, int height)
Parameter Type Description
number Int32 The page number.
name String The worksheet or page name.
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


Page(int, bool, int, int, List<Line>)

Initializes new instance of Page class.

public Page(int number, bool visible, int width, int height, List<Line> lines)
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.
lines List`1 The lines contained by the page when viewing as JPG or PNG with enabled Text Extraction.

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.
ArgumentNullException Thrown when lines is null.

See Also


Page(int, string, bool, int, int, List<Line>)

Initializes new instance of Page class.

public Page(int number, string name, bool visible, int width, int height, List<Line> lines)
Parameter Type Description
number Int32 The page number.
name String The worksheet or page name.
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.
lines List`1 The lines contained by the page when viewing as JPG or PNG with enabled Text Extraction.

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.
ArgumentNullException Thrown when lines is null.

See Also