You are here

function ExcelRange::getPreviousRange in Feeds Excel 6

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

Set pointer to the previous range.

File

includes/ExcelRange.inc, line 97

Class

ExcelRange

Code

function getPreviousRange() {
  $this
    ->setRange($this->currentRangeID - 1);
  return $this->currentRange;
}