create_cell_area method

create_cell_area(, start_cell_name, end_cell_name)

Creates a cell area.

Returns

Return a CellArea.


@staticmethod
def create_cell_area(start_cell_name, end_cell_name):
    ...
ParameterTypeDescription
start_cell_nameSystem.StringThe top-left cell of the range.
end_cell_nameSystem.StringThe bottom-right cell of the range.

create_cell_area(, start_row, start_column, end_row, end_column)

Creates a cell area.

Returns

Return a CellArea.


@staticmethod
def create_cell_area(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