You are here

function ExcelRange::isRowInAnyRange in Feeds Excel 6

Same name and namespace in other branches
  1. 7 includes/ExcelRange.inc \ExcelRange::isRowInAnyRange()

Retrieve if a cell of the row is present in any range.

File

includes/ExcelRange.inc, line 232

Class

ExcelRange

Code

function isRowInAnyRange($row) {
  foreach ($this->ranges as $range) {
    if ($this
      ->isRowInRange($range, $row)) {
      return TRUE;
    }
  }
  return FALSE;
}