CellArea class

CellArea class

Represent an area of cells.

The CellArea type exposes the following members:

Constructors

ConstructorDescription
initConstructs a new instance of CellArea

Properties

PropertyDescription
start_rowGets or set the start row of this area.
end_rowGets or set the end row of this area.
start_columnGets or set the start column of this area.
end_columnGets or set the end column of this area.

Methods

MethodDescription
create_cell_areaCreates a cell area.
create_cell_areaCreates a cell area.
compare_toCompare two CellArea objects according to their top-left corner.

Example

from aspose.cells import CellArea

# Create Cell Area
ca = CellArea()
ca.start_row = 0
ca.end_row = 0
ca.start_column = 0
ca.end_column = 0

See Also