Class OdfCellCollection
- Namespace
- OdfKit.Spreadsheet
- Assembly
- OdfKit.dll
Indexes worksheet cells by row, column, or address. 提供工作表儲存格的索引入口。
public sealed class OdfCellCollection
- Inheritance
-
OdfCellCollection
- Inherited Members
Properties
this[int, int]
Gets a cell by row and column index. 依列與欄索引取得儲存格。
public OdfCell this[int row, int column] { get; }
Parameters
rowintThe zero-based row index. / 採 0 為基準的列索引。
columnintThe zero-based column index. / 採 0 為基準的欄索引。
Property Value
- OdfCell
The cell at the specified position. / 指定位置的儲存格。
this[string]
Gets a cell by A1-style address. 依 A1 樣式位址取得儲存格。
public OdfCell this[string address] { get; }
Parameters
addressstringThe cell address, such as
A1. / 儲存格位址,例如A1。
Property Value
- OdfCell
The cell at the specified position. / 指定位置的儲存格。