CSReportDll.cReportFormulaInt.getParameters C# (CSharp) Method

getParameters() private method

private getParameters ( ) : cReportFormulaParameters
return cReportFormulaParameters
        internal cReportFormulaParameters getParameters()
        {
            return m_parameters;
        }

Usage Example

        private void evalIsNotEqual(cReportFormulaInt fint)
        {
            if (fint.getVariables().item(C_ISNOTEQUAL) == null)
            {
                fint.getVariables().add(null, C_ISNOTEQUAL);
            }

            cReportVariable w_item = fint.getVariables().item(C_ISNOTEQUAL);
            // the IsNotEqual function is for numbers
            //
            String strValue = "";
            String strConstValue = "";

            strValue = (String)m_report.getValue(fint.getParameters().item(0).getValue(), true);
            strConstValue = fint.getParameters().item(1).getValue();

            w_item.setValue(strValue != strConstValue);
        }
All Usage Examples Of CSReportDll.cReportFormulaInt::getParameters