Click or drag to resize

CellRangeItem(Int32, Int32) Property

Gets excel cell at the specified relative position.

Namespace: SautinSoft.Excel
Assembly: SautinSoft.Excel (in SautinSoft.Excel.dll) Version: 2025.2.6
Syntax
public ExcelCell this[
	int relativeRow,
	int relativeColumn
] { get; }

Parameters

relativeRow  Int32
The relative row position.
relativeColumn  Int32
The relative column position.

Property Value

ExcelCell
Remarks
Absolute position of excel cell is calculated by adding relativeRow to FirstRowIndex and relativeColumn to FirstColumnIndex.
See Also