Aspose.Cells.Examples.CSharp.Articles.LightCellsDataHandlerVisitCells.ProcessCell C# (CSharp) Method

ProcessCell() public method

public ProcessCell ( Cell cell ) : bool
cell Cell
return bool
        public bool ProcessCell(Cell cell)
        {
            cellCount++;
            if (cell.IsFormula)
            {
                formulaCount++;
            }
            else if (cell.Type == CellValueType.IsString)
            {
                stringCount++;
            }
            return false;
        }
    }