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

Packages that use Range
com.jniwrapper.win32.jexcel   
 

Uses of Range in com.jniwrapper.win32.jexcel
 

Methods in com.jniwrapper.win32.jexcel that return Range
 Range WorksheetEventObject.getRange()
          Returns an instance of the Range class, which the event is connected with.
 Range Worksheet.selectAll()
          Returns the Range that contains all cells of the worksheet.
 Range Worksheet.getUsedRange()
          Returns the Range that contains used cells of the worksheet.
 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 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 Worksheet.getRange(java.lang.String range)
          Creates an instance of the Range class that contains cells of the specified range.
 Range Range.include(Range range)
          Enlarges the range by adding a new range specified by the range parameter.
 Range Range.include(java.lang.String range)
          Enlarges the range by adding a new range specified by its string representation.
 Range Range.getIntersection(Range range)
          Returns the intersection of the current range and the specified one.
 Range Application.getSelection()
          Returns selection.
 

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

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