Uses of Class
org.apache.poi.hssf.record.cf.CellRange

Packages that use CellRange
org.apache.poi.hssf.record Record package contains class representations for XLS binary strutures. 
org.apache.poi.hssf.record.cf   
 

Uses of CellRange in org.apache.poi.hssf.record
 

Methods in org.apache.poi.hssf.record that return CellRange
 CellRange[] CFHeaderRecord.getCellRanges()
           
 CellRange CFHeaderRecord.getEnclosingCellRange()
           
 

Methods in org.apache.poi.hssf.record with parameters of type CellRange
 void CFHeaderRecord.setCellRanges(CellRange[] cellRanges)
          Set cell ranges list to a single cell range and modify the enclosing cell range accordingly.
 void CFHeaderRecord.setEnclosingCellRange(CellRange cr)
           
 

Uses of CellRange in org.apache.poi.hssf.record.cf
 

Methods in org.apache.poi.hssf.record.cf that return CellRange
 CellRange CellRange.cloneCellRange()
           
static CellRange[] CellRange.convertRegionsToCellRanges(Region[] regions)
          Convert array of regions to a List of CellRange objects
 CellRange CellRange.createEnclosingCellRange(CellRange range)
          Create an enclosing CellRange for the two cell ranges.
static CellRange[] CellRange.mergeCellRanges(CellRange[] cellRanges)
          Do all possible cell merges between cells of the list so that:
if a cell range is completely inside of another cell range, it gets removed from the list if two cells have a shared border, merge them into one bigger cell range
 

Methods in org.apache.poi.hssf.record.cf with parameters of type CellRange
 boolean CellRange.contains(CellRange range)
          Check if the specified range is located inside of this cell range.
static Region[] CellRange.convertCellRangesToRegions(CellRange[] cellRanges)
          Convert a List of CellRange objects to an array of regions
 CellRange CellRange.createEnclosingCellRange(CellRange range)
          Create an enclosing CellRange for the two cell ranges.
 boolean CellRange.hasExactSharedBorder(CellRange range)
          Check if the specified cell range has a shared border with the current range.
 int CellRange.intersect(CellRange another)
          Intersect this range with the specified range.
static CellRange[] CellRange.mergeCellRanges(CellRange[] cellRanges)
          Do all possible cell merges between cells of the list so that:
if a cell range is completely inside of another cell range, it gets removed from the list if two cells have a shared border, merge them into one bigger cell range
 



Copyright 2008 The Apache Software Foundation or its licensors, as applicable.