Lines Matching refs:nRow

871 			for( sal_Int32 nRow = 0; nRow < nRowCount; nRow++ )  in SetTableStyle()  local
875 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetTableStyle()
992 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in SetVertical() local
996 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetVertical()
1129 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in DeleteMarked() local
1133 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in DeleteMarked()
1161 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in GetStyleSheet() local
1165 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in GetStyleSheet()
1197 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in SetStyleSheet() local
1201 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetStyleSheet()
1798 for( sal_Int32 nRow = rFirst.mnRow; nRow <= rLast.mnRow && !bExt; nRow++ ) in getSelectedCells() local
1802 Reference< XMergeableCell > xCell( mxTable->getCellByPosition( nCol, nRow ), UNO_QUERY ); in getSelectedCells()
1808 CellPos aPos( nCol, nRow ); in getSelectedCells()
1819 …if( ((nCol + xCell->getColumnSpan() - 1) > rLast.mnCol) || (nRow + xCell->getRowSpan() - 1 ) > rLa… in getSelectedCells()
1822 rLast.mnRow = std::max( rLast.mnRow, nRow + xCell->getRowSpan() - 1 ); in getSelectedCells()
2006 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in MergeAttrFromSelectedCells() local
2010 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in MergeAttrFromSelectedCells()
2252 for( sal_Int32 nRow = std::max( aStart.mnRow - 1, (sal_Int32)0 ); nRow < nLastRow; nRow++ ) in ApplyBorderAttr() local
2255 nRowFlags |= (nRow == aStart.mnRow) ? CELL_TOP : 0; in ApplyBorderAttr()
2256 nRowFlags |= (nRow == aEnd.mnRow) ? CELL_BOTTOM : 0; in ApplyBorderAttr()
2257 nRowFlags |= (nRow < aStart.mnRow) ? CELL_UPPER : 0; in ApplyBorderAttr()
2258 nRowFlags |= (nRow > aEnd.mnRow) ? CELL_LOWER : 0; in ApplyBorderAttr()
2262 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in ApplyBorderAttr()
2337 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in SetAttrToSelectedCells() local
2341 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetAttrToSelectedCells()
2492 for( sal_Int32 nRow = 0; nRow < nPasteRows; ++nRow ) in PasteObject() local
2496 …ic_cast< Cell* >( mxTable->getCellByPosition( aStart.mnCol + nCol, aStart.mnRow + nRow ).get() ) ); in PasteObject()
2500 …xTargetCell->cloneFrom( dynamic_cast< Cell* >( xPasteTable->getCellByPosition( nCol, nRow ).get() … in PasteObject()
2558 for( sal_Int32 nRow = aStart.mnRow; nRow <= aEnd.mnRow; nRow++ ) in ApplyFormatPaintBrush() local
2562 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in ApplyFormatPaintBrush()
2651 sal_Bool SvxTableController::isRowSelected( sal_Int32 nRow ) in isRowSelected() argument
2657 …if( (aFirstPos.mnCol == 0) && (nRow >= aFirstPos.mnRow && nRow <= aLastPos.mnRow) && (mxTable->get… in isRowSelected()