CellArea
概要
CellArea は Java 用 Aspose.Cells FOSS のクラスです。
行と列の境界を持つセル領域を表します。
プロパティ
| 名前 | タイプ | アクセス | 説明 |
|---|---|---|---|
firstRow | int | 読み取り | 最初の行を返します。 |
firstColumn | int | 読み取り | 最初の列を返します。 |
totalRows | int | 読み取り | 総行数を返します。 |
totalColumns | int | 読み取り | 総列数を返します。 |
方法
| Signature | Description |
|---|---|
CellArea(firstRow: int, firstColumn: int, totalRows: int, totalColumns: int) | 指定された境界で新しい CellArea を作成します。 |
getFirstRow() → int | 最初の行を返します。 |
getFirstColumn() → int | 最初の列を返します。 |
getTotalRows() → int | 総行数を返します。 |
getTotalColumns() → int | 総列数を返します。 |
createCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int) → CellArea | 開始セルと終了セルの座標から CellArea を作成します。 |
createCellArea(startCellName: String, endCellName: String) → CellArea | 開始セルと終了セルの名前(例: “A1”, “B2”)から CellArea を作成します。 |