Example:
# Create Cell Area ca = CellArea() ca.StartRow = 0 ca.EndRow = 0 ca.StartColumn = 0 ca.EndColumn = 0
Field Summary | ||
---|---|---|
int | StartRow | |
Gets or set the start row of this area. | ||
int | EndRow | |
Gets or set the end row of this area. | ||
int | StartColumn | |
Gets or set the start column of this area. | ||
int | EndColumn | |
Gets or set the end column of this area. |
Constructor Summary |
---|
CellArea()
|
Method Summary | ||
---|---|---|
method | compareTo(obj) | |
Internal use only. | ||
static method | createCellArea(startRow, startColumn, endRow, endColumn) | |
Creats a cell area. | ||
static method | createCellArea(startCellName, endCellName) | |
Creats a cell area. | ||
method | toString() | |
Returns a string represents the current Worksheet object. |
Field Detail |
---|
StartRow | |
int StartRow |
EndRow | |
int EndRow |
StartColumn | |
int StartColumn |
EndColumn | |
int EndColumn |
Constructor Detail |
---|
CellArea()
Method Detail |
---|
compareTo | |
int compareTo(obj) |
obj: Object
- toString | |
String toString() |
createCellArea | |
static CellArea createCellArea(startRow, startColumn, endRow, endColumn) |
startRow: int
- The start row.startColumn: int
- The start column.endRow: int
- The end row.endColumn: int
- The end column.createCellArea | |
static CellArea createCellArea(startCellName, endCellName) |
startCellName: String
- The top-left cell of the range.endCellName: String
- The bottom-right cell of the range.