Opens the specified cell and returns a Cell object.
Namespace: Aceoffix.ExcelWriterAssembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntaxpublic Cell OpenCellRC(
int Row,
int Col
)
Public Function OpenCellRC (
Row As Integer,
Col As Integer
) As Cell
Parameters
- Row
- Type: SystemInt32
The index of row. Start from "1". - Col
- Type: SystemInt32
The index of column. Start form "1".
Return Value
Type:
CellReturns a Cell object.
RemarksOpens the specified cell and returns a
Cell object.
Note |
---|
Note: There is a limit that the maximum number of columns per worksheet is 676 and the maximum number of rows is 65,536 in Excel2003 and earlier versions. Please do not exceed the maximum number of columns when input the parameter of Col. |
ExamplesPlease refer to the full code example in the OpenCell(String) method topic to learn how to call the OpenCellRC method.
See Also