Exemple #1
0
 /// <summary>
 /// Sets the contents of the cell
 /// </summary>
 public void SetContents(Formulas.Formula f)
 {
     contents = f;
 }
Exemple #2
0
 /// <summary>
 /// Constructor for a cell containing a Formula
 /// </summary>
 public Cell(string n, Formulas.Formula v)
 {
     Name     = n;
     contents = v;
     Value    = new FormulaError();
 }