예제 #1
0
 /**
  * Inserts a blank column into this spreadsheet.  If the column is out of
  * range of the columns in the sheet, then no action is taken
  *
  * @param col the column to insert
  */
 public void insertColumn(int col)
 {
     range.insertColumn(col);
 }