CSReportDll.cReportFormula.getFormulasInt C# (CSharp) Method

getFormulasInt() public method

public getFormulasInt ( ) : cReportFormulasInt
return cReportFormulasInt
        public cReportFormulasInt getFormulasInt()
        {
            return m_formulasInt;
        }

Usage Example

 private static string getFunctionCall(string code, cReportFormula formula)
 { 
     int n = code.IndexOf("(");
     var functionName = cUtil.subString(code, 8, n-8);
     var parameters = "";
     for (int _i = 0; _i < formula.getFormulasInt().count(); _i++)
     {
         var fint = formula.getFormulasInt().item(_i);
         parameters += "globals.getVar(\"p__" + _i + "__\").getValue(),";
     }
     if (parameters.Length > 0)
     {
         parameters = parameters.Substring(0, parameters.Length - 1);
     }
     return functionName + "(" + parameters + ")";
 }
All Usage Examples Of CSReportDll.cReportFormula::getFormulasInt