Beispiel #1
0
 public static CellRange GetBoundingCellRange(this IEnumerable <ICellRange> cellRanges)
 {
     return(CellRangeUtils.GetBoundingCellRange(cellRanges));
 }
Beispiel #2
0
 public static bool Contains(this ICellRange self, ICellRange cellRange)
 {
     return(CellRangeUtils.Contains(self, cellRange));
 }
Beispiel #3
0
 public static int GetRightColumn(this ICellRange self)
 {
     return(CellRangeUtils.GetRightColumn(self));
 }
Beispiel #4
0
 public static int GetBottomRow(this ICellRange self)
 {
     return(CellRangeUtils.GetBottomRow(self));
 }
Beispiel #5
0
 public static bool IntersectsWith(this ICellRange cellRange1, ICellRange cellRange2)
 {
     return(CellRangeUtils.IntersectsWith(cellRange1, cellRange2));
 }
Beispiel #6
0
 public static ICellRange Intersect(this ICellRange cellRange1, ICellRange cellRange2)
 {
     return(CellRangeUtils.Intersect(cellRange1, cellRange2));
 }