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
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