예제 #1
0
파일: CellRange.cs 프로젝트: Egaros/lib
 public static CellRange GetBoundingCellRange(this IEnumerable <ICellRange> cellRanges)
 {
     return(CellRangeUtils.GetBoundingCellRange(cellRanges));
 }
예제 #2
0
파일: CellRange.cs 프로젝트: Egaros/lib
 public static bool Contains(this ICellRange self, ICellRange cellRange)
 {
     return(CellRangeUtils.Contains(self, cellRange));
 }
예제 #3
0
파일: CellRange.cs 프로젝트: Egaros/lib
 public static int GetRightColumn(this ICellRange self)
 {
     return(CellRangeUtils.GetRightColumn(self));
 }
예제 #4
0
파일: CellRange.cs 프로젝트: Egaros/lib
 public static int GetBottomRow(this ICellRange self)
 {
     return(CellRangeUtils.GetBottomRow(self));
 }
예제 #5
0
파일: CellRange.cs 프로젝트: Egaros/lib
 public static bool IntersectsWith(this ICellRange cellRange1, ICellRange cellRange2)
 {
     return(CellRangeUtils.IntersectsWith(cellRange1, cellRange2));
 }
예제 #6
0
파일: CellRange.cs 프로젝트: Egaros/lib
 public static ICellRange Intersect(this ICellRange cellRange1, ICellRange cellRange2)
 {
     return(CellRangeUtils.Intersect(cellRange1, cellRange2));
 }