Exemple #1
0
        public CellForumla Copy()
        {
            var forumla = new CellForumla
            {
                Formula = Formula
            };

            foreach (var key in KeyList)
            {
                forumla.KeyList.Add(key.Copy());
            }

            return(forumla);
        }
Exemple #2
0
 public object CalculateForumla(string formulaName, object lastValue, object value)
 {
     return(CellForumla.Calculate(formulaName.ToLower(), lastValue, value));
 }