You are here

function ExcelRange::getNextRange in Feeds Excel 6

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

Set pointer to the next range.

File

includes/ExcelRange.inc, line 85

Class

ExcelRange

Code

function getNextRange() {
  if (!isset($this->currentRangeID)) {
    $this
      ->setRange(0);
  }
  else {
    $this
      ->setRange($this->currentRangeID + 1);
  }
  return $this->currentRange;
}