java.lang.Objectcom.aspose.cells.CellArea
public class CellArea
Example:
//Create Cell Area
CellArea ca = new 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 | ||
---|---|---|
int | compareTo(java.lang.Object obj) | |
Internal use only. | ||
static CellArea | createCellArea(int startRow, int startColumn, int endRow, int endColumn) | |
Creat a cell area. | ||
static CellArea | createCellArea(java.lang.String startCellName, java.lang.String endCellName) | |
Creat a cell area. | ||
java.lang.String | toString() | |
Returns a string represents the current Worksheet object. |
Field Detail |
---|
StartRow | |
public int StartRow |
EndRow | |
public int EndRow |
StartColumn | |
public int StartColumn |
EndColumn | |
public int EndColumn |
Constructor Detail |
---|
public CellArea()
Method Detail |
---|
compareTo | |
public int compareTo(java.lang.Object obj) |
obj
- toString | |
public java.lang.String toString() |
createCellArea | |
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.createCellArea | |
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.