You are here

function ExcelRange::getCurrentRangeMaxCol in Feeds Excel 6

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

Get the maximum column of the defined range.

File

includes/ExcelRange.inc, line 325

Class

ExcelRange

Code

function getCurrentRangeMaxCol() {
  if ($this->currentRange['cols'] && isset($this->currentRange['cols'][1])) {
    return $this->currentRange['cols'][1];
  }
  return NULL;
}