WorksheetRange constructor
init
Initializes a new instance of the WorksheetRange class.
def __init__(self, min_row_index, max_row_index, min_column_index, max_column_index):
...
| Parameter |
Type |
Description |
| min_row_index |
int |
The zero-based index of the first row. |
| max_row_index |
int |
The zero-based index of the last row. |
| min_column_index |
int |
The zero-based index of the first column. |
| max_column_index |
int |
The zero-based index of the last column. |
Exceptions
| Exception |
Description |
| ArgumentOutOfRangeException |
|
See Also