CSReportDll.cReportCompiler.evalCount C# (CSharp) Метод

evalCount() приватный Метод

private evalCount ( cReportFormulaInt fint ) : void
fint cReportFormulaInt
Результат void
        private void evalCount(cReportFormulaInt fint)
        {
            if (fint.getVariables().item(C_COUNT) == null)
            {
                fint.getVariables().add(null, C_COUNT);
            }

            cReportVariable w_item = fint.getVariables().item(C_COUNT);
            // the Count functio is for numbers
            //
            w_item.setValue((double)w_item.getValue() + 1);
        }