FileHelpers.ExcelNPOIStorage.ExcelNPOIStorage.CellAsString C# (CSharp) Method

CellAsString() protected method

Get the string value of a cell
protected CellAsString ( object row, object col ) : string
row object Cell Row
col object Cell Column
return string
        protected override string CellAsString(object row, object col)
        {
            var rowO = mSheet.GetRow((int) row);
            return rowO == null
                ? null
                : this.CellAsString(rowO, (int) col);
        }

Same methods

ExcelNPOIStorage::CellAsString ( IRow row, int col ) : string