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