Beispiel #1
0
 /**
  * Get highest worksheet row that contains data
  *
  * @param   string     $column     Return the highest data row for the specified column,
  *                                     or the highest data row of any column if no column letter is passed
  * @return string Highest row number that contains data
  */
 public function getHighestDataRow($column = null)
 {
     return $this->cellCollection->getHighestRow($column);
 }