[]
Creates and returns a new enumerator that allows to loop through all pages in the range.
public IEnumerator<int> GetEnumerator(int minPageNumber, int maxPageNumber)
| Type | Name | Description |
|---|---|---|
| int | minPageNumber | The starting page number (used if the current range is from the beginning of a document). |
| int | maxPageNumber | The ending page number (used if the current range is to the end of a document). |
| Type | Description |
|---|---|
| IEnumerator<int> | The new enumerator. |
Creates and returns a new enumerator that allows to loop through all pages in the range.
public IEnumerator<int> GetEnumerator(int maxPageNumber)
| Type | Name | Description |
|---|---|---|
| int | maxPageNumber | The ending page number (used if the current range is to the end of a document). |
| Type | Description |
|---|---|
| IEnumerator<int> | The new enumerator. |
Creates and returns a new enumerator that allows to loop through all pages in the range.
public IEnumerator<int> GetEnumerator()
| Type | Description |
|---|---|
| IEnumerator<int> | The new enumerator. |