/**
  * Removes a row from this spreadsheet.  If the row is out of
  * range of the columns in the sheet, then no action is taken
  *
  * @param row the row to remove
  */
 public void removeRow(int row)
 {
     range.removeRow(row);
 }