function ExcelRange::isColInCurrentRange in Feeds Excel 7
Same name and namespace in other branches
- 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
Code
function isColInCurrentRange($col) {
return $this
->isColInRange($this->currentRange, $col);
}