/** * @return whether cell at rowIndex and columnIndex is a subtotal */ public override bool IsSubTotal(int rowIndex, int columnIndex) { // delegate the query to the sheet evaluator which has access to internal ptgs SheetRefEvaluator _sre = _evaluator.GetSheetEvaluator(_evaluator.FirstSheetIndex); return(_sre.IsSubTotal(FirstRow + rowIndex, FirstColumn + columnIndex)); }
/** * @return whether cell at rowIndex and columnIndex is a subtotal */ public override bool IsSubTotal(int rowIndex, int columnIndex) { // delegate the query to the sheet evaluator which has access to internal ptgs return(_evaluator.IsSubTotal(rowIndex, columnIndex)); }