CSReportDll.cReportCompiler.evalIsInRs C# (CSharp) Méthode

evalIsInRs() private méthode

private evalIsInRs ( cReportFormulaInt fint ) : void
fint cReportFormulaInt
Résultat void
        private void evalIsInRs(cReportFormulaInt fint)
        {
            if (fint.getVariables().item(C_ISINRS) == null)
            {
                fint.getVariables().add(null, C_ISINRS);
            }

            cReportVariable w_item = fint.getVariables().item(C_ISINRS);
            // TODO: finish coding evalIsInRs
            //
            w_item.setValue(true);
        }