Example #1
0
        private string PrepareCellValue(Cell cell, Cell firstRowCell)
        {
            cell.Text = ReplaceConstantsIfSet(cell.Text);
            var cellValue = _cellFormatter.Format(cell, _extendedFeatures, firstRowCell);

            return(cellValue);
        }
Example #2
0
 private string PrepareCellValue(Cell cell)
 {
     return(_cellFormatter.Format(cell));
 }