Example #1
0
 public CGNormalCellRef(FullCellAddr cellAddr)
 {
     if (cellAddr.sheet.IsFunctionSheet)
     {
         this.index = -1;                 // Illegal cell reference
     }
     else
     {
         this.index = valueTable.GetIndex(cellAddr);
     }
 }
Example #2
0
 public CGNormalCellArea(ArrayView array)
 {
     if (array.sheet.IsFunctionSheet)
     {
         this.index = -1;                 // Illegal cell area
     }
     else
     {
         this.index = valueTable.GetIndex(array);
     }
 }
Example #3
0
 public CGValueConst(Value value)
 {
     this.index = valueTable.GetIndex(value);
 }