public static CellRange GetBoundingCellRange(this IEnumerable <ICellRange> cellRanges) { return(CellRangeUtils.GetBoundingCellRange(cellRanges)); }
public static bool Contains(this ICellRange self, ICellRange cellRange) { return(CellRangeUtils.Contains(self, cellRange)); }
public static int GetRightColumn(this ICellRange self) { return(CellRangeUtils.GetRightColumn(self)); }
public static int GetBottomRow(this ICellRange self) { return(CellRangeUtils.GetBottomRow(self)); }
public static bool IntersectsWith(this ICellRange cellRange1, ICellRange cellRange2) { return(CellRangeUtils.IntersectsWith(cellRange1, cellRange2)); }
public static ICellRange Intersect(this ICellRange cellRange1, ICellRange cellRange2) { return(CellRangeUtils.Intersect(cellRange1, cellRange2)); }