Example #1
0
File: Cells.cs Project: Dugin13/P10
 public ArrayFormula(CachedArrayFormula caf, int col, int row)
     : this(caf, new CellAddr(col, row))
 {
 }
Example #2
0
File: Cells.cs Project: Dugin13/P10
        private readonly CellAddr ca; // Cell's location within array value

        #endregion Fields

        #region Constructors

        public ArrayFormula(CachedArrayFormula caf, CellAddr ca)
        {
            this.caf = caf; this.ca = ca;
        }