CellArea class
CellArea class
Represent an area of cells.
The CellArea type exposes the following members:
Constructors
Constructor | Description |
---|---|
init | Constructs a new instance of CellArea |
Properties
Property | Description |
---|---|
start_row | Gets or set the start row of this area. |
end_row | Gets or set the end row of this area. |
start_column | Gets or set the start column of this area. |
end_column | Gets or set the end column of this area. |
Methods
Method | Description |
---|---|
create_cell_area | Creates a cell area. |
create_cell_area | Creates a cell area. |
compare_to | 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
- module
aspose.cells