function ExcelRange::isRowInCurrentRange in Feeds Excel 6
Same name and namespace in other branches
- 7 includes/ExcelRange.inc \ExcelRange::isRowInCurrentRange()
Retrieve if there are cells of the row in the current range.
File
- includes/
ExcelRange.inc, line 286
Class
Code
function isRowInCurrentRange($row) {
return $this
->isRowInRange($this->currentRange, $row);
}