CellArea class

CellArea class

Represent an area of cells.

The CellArea type exposes the following members:

Constructors

ConstructorDescription
__init__(self)Constructs 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_area(, start_row, start_column, end_row, end_column)Creates a cell area.
create_cell_area(, start_cell_name, end_cell_name)Creates a cell area.
compare_to(self, obj)Compare 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