FileHelpers.ExcelNPOIStorage.ExcelNPOIStorage.CellAsString C# (CSharp) Метод

CellAsString() защищенный Метод

Get the string value of a cell
protected CellAsString ( object row, object col ) : string
row object Cell Row
col object Cell Column
Результат 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