Beispiel #1
0
 public bool InvokeFormula(Command cmd)
 {
     if (string.IsNullOrEmpty(Formula))
     {
         return(false);
     }
     if (iformula == null)
     {
         iformula = GetFormula(Formula);
     }
     if (iformula != null)
     {
         return(iformula.InvokeFormula(cmd));
     }
     return(false);
 }