Column

IExcelDataCell.Column property

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

public int Column { get; }

Examples

Example:

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

See Also