CSReportDll.cReportFormulas.add C# (CSharp) Method

add() public method

public add ( String name ) : cReportFormula
name String
return cReportFormula
        public cReportFormula add(String name)
        {
            try
            {
                cReportFormula c = new cReportFormula();
                c.setName(name);
                Add(name, c);
                return c;
            }
            catch 
            {
                return null;
            }
        }