function ExcelRange::isCellInCurrentRange in Feeds Excel 6
Same name and namespace in other branches
- 7 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);
}