__init__ constructor

init

Initializes a new instance of WorksheetColumnsRange.

def __init__(self, worksheet_index, first_column, last_column):
    ...
Parameter Type Description
worksheet_index int Worksheet index
first_column int First column
last_column int Last column

init

Initializes a new instance of WorksheetColumnsRange class.

def __init__(self, worksheet_name, first_column, last_column):
    ...
Parameter Type Description
worksheet_name str Worksheet name.
first_column int First column.
last_column int Last column.

See Also