示例#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));
 }