You are here

function ExcelRange::getCurrentRangeMaxRow in Feeds Excel 7

Same name and namespace in other branches
  1. 6 includes/ExcelRange.inc \ExcelRange::getCurrentRangeMaxRow()

Get the maximum row of the defined range.

File

includes/ExcelRange.inc, line 334

Class

ExcelRange

Code

function getCurrentRangeMaxRow() {
  if ($this->currentRange['rows'] && isset($this->currentRange['rows'][1])) {
    return $this->currentRange['rows'][1];
  }
  return NULL;
}