function ExcelRange::__construct in Feeds Excel 7
Same name and namespace in other branches
- 6 includes/ExcelRange.inc \ExcelRange::__construct()
Init object.
File
- includes/
ExcelRange.inc, line 26
Class
Code
function __construct($range_expression, $max = NULL) {
if (isset($max)) {
$this->max_rows = $max['rows'];
$this->max_cols = $max['cols'];
}
$this
->expression_to_ranges($range_expression);
}