You are here

function ExcelRange::isColInCurrentRange in Feeds Excel 7

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

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

File

includes/ExcelRange.inc, line 292

Class

ExcelRange

Code

function isColInCurrentRange($col) {
  return $this
    ->isColInRange($this->currentRange, $col);
}