function ExcelRange::isCellInCurrentRange in Feeds Excel 7
Same name and namespace in other branches
- 6 includes/ExcelRange.inc \ExcelRange::isCellInCurrentRange()
Retrieve if the coordinates fit to the current Range.
File
- includes/
ExcelRange.inc, line 280
Class
Code
function isCellInCurrentRange($row, $col) {
return $this
->isCellInRange($this->currentRange, $row, $col);
}