Value

ExcelDataCell.Value property

Gets the value contained in the Excel cell.

public object Value { get; }

Examples

Example:

[C#]
ExcelDataWorkbook wb = new ExcelDataWorkbook(testFile);
IExcelDataCell cell = wb.GetCell(1, 1, 1);
Console.WriteLine(cell.Value.ToString());

See Also