Uses of Class
com.jniwrapper.win32.jexcel.Range

Packages that use Range
com.jniwrapper.win32.jexcel   
 

Uses of Range in com.jniwrapper.win32.jexcel
 

Subclasses of Range in com.jniwrapper.win32.jexcel
 class EntireRange
           
 

Methods in com.jniwrapper.win32.jexcel that return Range
 Range Worksheet.getColumn(java.lang.String column)
          Returns the Range that contains all cells of the specified column.
 Range Worksheet.getColumns(java.lang.String[] columns)
          Returns the Range that contains all cells of the specified columns.
 Range Range.getIntersection(Range range)
          Returns the intersection of the current range and the specified one.
 Range WorksheetEventObject.getRange()
          Returns an instance of the Range class, which the event is connected with.
 Range Worksheet.getRange(java.lang.String range)
          Creates an instance of the Range class that contains cells of the specified range.
 Range Worksheet.getRow(int row)
          Returns the Range that contains all cells of the specified row.
 Range Worksheet.getRows(int[] rows)
          Returns the Range that contains all cells of the specified rows.
 Range Application.getSelection()
          Returns selection.
 Range Worksheet.getUsedRange()
          Returns the Range that contains used cells of the worksheet.
 Range Range.include(Range range)
          Deprecated. use union(Range) method instead
 Range Range.include(java.lang.String range)
          Deprecated. use union(String) method instead
 Range Worksheet.selectAll()
          Returns the Range that contains all cells of the worksheet.
 Range Range.union(Range range)
          Enlarges the range by adding a new range specified by the range parameter.
 Range Range.union(java.lang.String range)
          Enlarges the range by adding a new range specified by its string representation.
 

Methods in com.jniwrapper.win32.jexcel with parameters of type Range
 void Worksheet.deleteColumn(Range column)
          Deletes specified column
 void Worksheet.deleteRow(Range row)
          Deletes specified row.
 Range Range.getIntersection(Range range)
          Returns the intersection of the current range and the specified one.
 Range Range.include(Range range)
          Deprecated. use union(Range) method instead
 void Worksheet.insertColumnAfter(Range column)
          Inserts new empty column after specified column.
 void Worksheet.insertColumnBefore(Range column)
          Inserts new empty column before specified column.
 void Worksheet.insertRowAfter(Range row)
          Inserts new empty row after specified row.
 void Worksheet.insertRowBefore(Range row)
          Inserts new empty row before specified row.
 boolean Range.intersects(Range range)
          Returns true if the current range intersects the range specified by the range parameter.
 Range Range.union(Range range)
          Enlarges the range by adding a new range specified by the range parameter.
 

Constructors in com.jniwrapper.win32.jexcel with parameters of type Range
WorksheetEventObject(Worksheet source, Range range)