Item Property (Int32, Int32)

Office Open XML

Access a single cell

Namespace:  OfficeOpenXml
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public ExcelRange this[
	int Row,
	int Col
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	Row As Integer, _
	Col As Integer _
) As ExcelRange
Visual C++
public:
property ExcelRange^ default[int Row, int Col] {
	ExcelRange^ get (int Row, int Col);
}

Parameters

Row
Type: System..::.Int32
The row
Col
Type: System..::.Int32
The column

Return Value

A range object

See Also