CSReportDll.cReportFormulas.add C# (CSharp) Méthode

add() public méthode

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