Пример #1
0
        /**
         * @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));
        }
Пример #2
0
 /**
  * @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));
 }