Row

IExcelDataCell.Row property

Gets the zero-based index of the row in the worksheet where the cell is located. Read-only Int32.

public int Row { get; }

Examples

Example:

[C#]
ExcelDataWorkbook wb = new ExcelDataWorkbook(testFile);
IExcelDataCell cell = wb.GetCell(1, 1, 1);
Console.WriteLine(cell.Row); //Output: 1

See Also