You are here

function ExcelRange::isCellInCurrentRange in Feeds Excel 6

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

Retrieve if the coordinates fit to the current Range.

File

includes/ExcelRange.inc, line 280

Class

ExcelRange

Code

function isCellInCurrentRange($row, $col) {
  return $this
    ->isCellInRange($this->currentRange, $row, $col);
}