Lines Matching refs:rEndRow
401 sal_Bool ScTable::GetCellArea( SCCOL& rEndCol, SCROW& rEndRow ) const in GetCellArea()
417 rEndRow = nMaxY; in GetCellArea()
421 sal_Bool ScTable::GetTableArea( SCCOL& rEndCol, SCROW& rEndRow ) const in GetTableArea()
431 rEndRow = nTableAreaY; in GetTableArea()
435 void ScTable::GetLastAttrCell( SCCOL& rEndCol, SCROW& rEndRow ) const in GetLastAttrCell()
451 rEndRow = nMaxY; in GetLastAttrCell()
475 sal_Bool ScTable::GetPrintArea( SCCOL& rEndCol, SCROW& rEndRow, sal_Bool bNotes ) const in GetPrintArea() argument
542 rEndRow = nMaxY; in GetPrintArea()
584 SCROW& rEndRow, sal_Bool bNotes ) const in GetPrintAreaVer() argument
610 rEndRow = nMaxY; in GetPrintAreaVer()
661 void ScTable::GetDataArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow, in GetDataArea() argument
680 SCROW nEnd = rEndRow; in GetDataArea()
716 if (rEndRow < MAXROW) in GetDataArea()
718 nTest = rEndRow+1; in GetDataArea()
725 ++rEndRow; in GetDataArea()
736 if ( aCol[rStartCol].IsEmptyBlock(rStartRow,rEndRow) ) in GetDataArea()
739 if ( aCol[rEndCol].IsEmptyBlock(rStartRow,rEndRow) ) in GetDataArea()
741 if ( !bTop && rStartRow < MAXROW && rStartRow < rEndRow ) in GetDataArea()
750 if ( !bBottom && rEndRow > 0 && rStartRow < rEndRow ) in GetDataArea()
754 if (aCol[i].HasDataAt(rEndRow)) in GetDataArea()
757 --rEndRow; in GetDataArea()
764 SCCOL& rEndCol, SCROW& rEndRow, bool bColumnsOnly ) const in ShrinkToUsedDataArea() argument
769 PutInOrder( rStartRow, rEndRow); in ShrinkToUsedDataArea()
776 if (rEndRow > MAXROW) in ShrinkToUsedDataArea()
777 rEndRow = MAXROW, o_bShrunk = true; in ShrinkToUsedDataArea()
786 if (aCol[rEndCol].IsEmptyBlock( rStartRow, rEndRow)) in ShrinkToUsedDataArea()
797 if (aCol[rStartCol].IsEmptyBlock( rStartRow, rEndRow)) in ShrinkToUsedDataArea()
808 if (rStartRow < rEndRow) in ShrinkToUsedDataArea()
821 if (rStartRow < rEndRow) in ShrinkToUsedDataArea()
825 if (aCol[i].HasDataAt( rEndRow)) in ShrinkToUsedDataArea()
829 --rEndRow; in ShrinkToUsedDataArea()
840 !aCol[rStartCol].IsEmptyBlock( rStartRow, rEndRow) : in ShrinkToUsedDataArea()
841 (rStartRow != rEndRow || aCol[rStartCol].HasDataAt( rStartRow))); in ShrinkToUsedDataArea()
887 void ScTable::LimitChartArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow ) in LimitChartArea() argument
889 while ( rStartCol<rEndCol && aCol[rStartCol].IsEmptyBlock(rStartRow,rEndRow) ) in LimitChartArea()
892 while ( rStartCol<rEndCol && aCol[rEndCol].IsEmptyBlock(rStartRow,rEndRow) ) in LimitChartArea()
895 while ( rStartRow<rEndRow && IsEmptyLine(rStartRow, rStartCol, rEndCol) ) in LimitChartArea()
898 while ( rStartRow<rEndRow && IsEmptyLine(rEndRow, rStartCol, rEndCol) ) in LimitChartArea()
899 --rEndRow; in LimitChartArea()