public class CellArea
Example:
//Create Cell Area
CellArea ca = new CellArea();
ca.StartRow = 0;
ca.EndRow = 0;
ca.StartColumn = 0;
ca.EndColumn = 0;
| Constructor Summary |
|---|
CellArea()
|
| 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.
|
||
| Method Summary | ||
|---|---|---|
int | compareTo(java.lang.Object obj) | |
Internal use only.
|
||
static CellArea | createCellArea(int startRow, int startColumn, int endRow, int endColumn) | |
Creats a cell area.
|
||
static CellArea | createCellArea(java.lang.String startCellName, java.lang.String endCellName) | |
Creats a cell area.
|
||
java.lang.String | toString() | |
Returns a string represents the current Worksheet object.
|
||
public int StartRow
public int EndRow
public int StartColumn
public int EndColumn
public int compareTo(java.lang.Object obj)
obj - public java.lang.String toString()
public static CellArea createCellArea(int startRow, int startColumn, int endRow, int endColumn)
startRow - The start row.startColumn - The start column.endRow - The end row.endColumn - The end column.public static CellArea createCellArea(java.lang.String startCellName, java.lang.String endCellName)
startCellName - The top-left cell of the range.endCellName - The bottom-right cell of the range.