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

evalSetVar() private méthode

private evalSetVar ( cReportFormulaInt fint ) : void
fint cReportFormulaInt
Résultat void
        private void evalSetVar(cReportFormulaInt fint)
        {
            String varName = "";

            varName = fint.getParameters().item(0).getValue();

            if (m_variables.item(varName) == null)
            {
                throw new ReportArgumentMissingException(
                    C_MODULE,
                    cReportError.errGetDescript(
                                    csRptErrors.CSRPTERRMISSINGPARAM,
                                    varName,
                                    "_setVar"));
            }

            cReportVariable w_item = m_variables.item(varName);
            w_item.setValue(fint.getParameters().item(1).getValue());
        }