[]
Creates an instance of OutputRange that includes a single interval of pages.
public OutputRange(int fromPage, int toPage, bool inverted)
Type | Name | Description |
---|---|---|
int | fromPage | The number of the first page to include (1-based). |
int | toPage | The number of the last page to include (1-based). |
bool | inverted | Indicates whether the range should be inverted, see Inverted for details. |
Creates an instance of OutputRange that includes a single interval of pages. FromPage may be greater than ToPage, in that case the range is inverted.
public OutputRange(int fromPage, int toPage)
Type | Name | Description |
---|---|---|
int | fromPage | The number of the first page to include (1-based). |
int | toPage | The number of the last page to include (1-based). |
Creates an instance of OutputRange that includes all pages with numbers specified in the list.
public OutputRange(int[] pageNumbers)
Type | Name | Description |
---|---|---|
int[] | pageNumbers | The array of page numbers to include. |
Creates an instance of OutputRange that includes pages specified by the string parameter. The string may contain:
public OutputRange(string pages)
Type | Name | Description |
---|---|---|
string | pages | The pages to be included. |
Creates an instance of OutputRange that includes all pages with numbers specified in the list.
public OutputRange(int[] pageNumbers, bool inverted)
Type | Name | Description |
---|---|---|
int[] | pageNumbers | The array of page numbers to include. |
bool | inverted | Indicates whether the range should be inverted, see Inverted for details. |
Creates an instance of OutputRange that includes pages specified by the string parameter. The string may contain:
public OutputRange(string pages, bool inverted)
Type | Name | Description |
---|---|---|
string | pages | The pages to be included. |
bool | inverted | Indicates whether the range should be inverted, see Inverted for details. |