You are here

function ExcelRange::isRowInCurrentRange in Feeds Excel 7

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

Retrieve if there are cells of the row in the current range.

File

includes/ExcelRange.inc, line 286

Class

ExcelRange

Code

function isRowInCurrentRange($row) {
  return $this
    ->isRowInRange($this->currentRange, $row);
}