function ExcelRange::getCurrentRangeMaxRow in Feeds Excel 7
Same name and namespace in other branches
- 6 includes/ExcelRange.inc \ExcelRange::getCurrentRangeMaxRow()
Get the maximum row of the defined range.
File
- includes/
ExcelRange.inc, line 334
Class
Code
function getCurrentRangeMaxRow() {
if ($this->currentRange['rows'] && isset($this->currentRange['rows'][1])) {
return $this->currentRange['rows'][1];
}
return NULL;
}