function ExcelRange::isCellInAnyRange in Feeds Excel 6
Same name and namespace in other branches
- 7 includes/ExcelRange.inc \ExcelRange::isCellInAnyRange()
Retrieve if the given cell is in any range.
File
- includes/
ExcelRange.inc, line 218
Class
Code
function isCellInAnyRange($row, $col) {
foreach ($this->ranges as $range) {
if ($this
->isRowInRange($range, $row)) {
if ($this
->isColInRange($range, $col)) {
return TRUE;
}
}
}
return FALSE;
}