PrintPageRange Constructors

Definition

Overloads

PrintPageRange(Int32)

Initializes an instance of the PrintPageRange class, using the specified page number.

PrintPageRange(Int32, Int32)

Initializes an instance of the PrintPageRange class, using the specified first and last page numbers.

PrintPageRange(Int32)

Initializes an instance of the PrintPageRange class, using the specified page number.

public:
 PrintPageRange(int page);
 PrintPageRange(int const& page);
public PrintPageRange(int page);
function PrintPageRange(page)
Public Sub New (page As Integer)

Parameters

page
Int32

int

The page number of the print range.

Applies to

PrintPageRange(Int32, Int32)

Initializes an instance of the PrintPageRange class, using the specified first and last page numbers.

public:
 PrintPageRange(int firstPage, int lastPage);
 PrintPageRange(int const& firstPage, int const& lastPage);
public PrintPageRange(int firstPage, int lastPage);
function PrintPageRange(firstPage, lastPage)
Public Sub New (firstPage As Integer, lastPage As Integer)

Parameters

firstPage
Int32

int

The first page number of the print range.

lastPage
Int32

int

The last page number of the print range.

Applies to