Range constructor

__init__(self, ca, cells)

Class constructor.


def __init__(self, ca, cells):
    ...
ParameterTypeDescription
caaspose.cells.CellAreaThe range.
cellsaspose.cells.Cells

__init__(self, first_row, first_column, row_number, column_number, cells)

Class constructor.


def __init__(self, first_row, first_column, row_number, column_number, cells):
    ...
ParameterTypeDescription
first_rowintFirst row of this range(zero based)
first_columnintFirst column of this range(zero base)
row_numberintNumber of rows(one based)
column_numberintNumber of columns(one based)
cellsaspose.cells.CellsThe Range object belongs to this Cells object

See Also