Click or drag to resize
SheetOpenCellRC Method
Opens the specified cell and returns a Cell object.

Namespace: Aceoffix.ExcelWriter
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public Cell OpenCellRC(
	int Row,
	int Col
)

Parameters

Row
Type: SystemInt32
The index of row. Start from "1".
Col
Type: SystemInt32
The index of column. Start form "1".

Return Value

Type: Cell
Returns a Cell object.
Remarks
Opens the specified cell and returns a Cell object.
Note 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.

Examples

Please refer to the full code example in the OpenCell(String) method topic to learn how to call the OpenCellRC method.

See Also