Exemple #1
0
 // Add the support range to the cell, avoiding direct self-support at sheet[col,row]
 public void AddSupport(Sheet sheet,
                        int col,
                        int row,
                        Sheet suppSheet,
                        Interval suppCols,
                        Interval suppRows)
 {
     if (supportSet == null)
     {
         supportSet = new SupportSet();
     }
     supportSet.AddSupport(sheet, col, row, suppSheet, suppCols, suppRows);
 }
Exemple #2
0
 // Clear the cell's support set; in ArrayFormula also clear the supportSetUpdated flag
 public virtual void ResetSupportSet()
 {
     supportSet = null;
 }
Exemple #3
0
 // Clear the cell's support set; in ArrayFormula also clear the supportSetUpdated flag
 public virtual void ResetSupportSet()
 {
     supportSet = null;
 }
Exemple #4
0
 // Add the support range to the cell, avoiding direct self-support at sheet[col,row]
 public void AddSupport(Sheet sheet, int col, int row, 
                    Sheet suppSheet, Interval suppCols, Interval suppRows)
 {
     if (supportSet == null)
     supportSet = new SupportSet();
       supportSet.AddSupport(sheet, col, row, suppSheet, suppCols, suppRows);
 }