You are here

function ExcelRange::isColInAnyRange in Feeds Excel 6

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

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

File

includes/ExcelRange.inc, line 243

Class

ExcelRange

Code

function isColInAnyRange($col) {
  foreach ($this->ranges as $range) {
    if ($this
      ->isColInRange($range, $col)) {
      return TRUE;
    }
  }
  return FALSE;
}