create_cell_area method

create_cell_area

Creates a cell area.

Returns

Return a CellArea.

def create_cell_area(self, start_cell_name, end_cell_name):
    ...
ParameterTypeDescription
start_cell_namestrThe top-left cell of the range.
end_cell_namestrThe bottom-right cell of the range.

create_cell_area

Creates a cell area.

Returns

Return a CellArea.

def create_cell_area(self, start_row, start_column, end_row, end_column):
    ...
ParameterTypeDescription
start_rowintThe start row.
start_columnintThe start column.
end_rowintThe end row.
end_columnintThe end column.

See Also