You are here

function ExcelRange::isCellInRange in Feeds Excel 7

Same name and namespace in other branches
  1. 6 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

ExcelRange

Code

function isCellInRange($range, $row, $col) {
  if ($this
    ->isRowInRange($range, $row)) {
    return $this
      ->isColInRange($range, $col);
  }
  return FALSE;
}