コード例 #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));
 }