Exemple #1
0
 public CellRange(CellReference sref1, CellReference sref2) : this()
 {
     Start = sref1;
     End   = sref2;
 }
Exemple #2
0
 public CellRange(int c1, int r1, int c2, int r2) : this()
 {
     Start = new CellReference(c1, r1);
     End   = new CellReference(c2, r2);
 }