Lines Matching refs:mnRow
379 for( aPos.mnRow = 0; aPos.mnRow < nRowCount; ++aPos.mnRow ) in ApplyCellStyles()
381 const bool bFirstRow = (aPos.mnRow == 0) && rStyle.mbUseFirstRow; in ApplyCellStyles()
382 const bool bLastRow = (aPos.mnRow == nRowCount-1) && rStyle.mbUseLastRow; in ApplyCellStyles()
413 if( (aPos.mnRow & 1) == 0 ) in ApplyCellStyles()
542 …if( (maEditPos.mnRow >= getRowCount()) || (maEditPos.mnCol >= getColumnCount()) || (getCell( maEdi… in update()
544 if(maEditPos.mnRow >= getRowCount()) in update()
545 maEditPos.mnRow = getRowCount()-1; in update()
624 xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in getCell()
785 …nCol >= 0) && (rPos.mnCol < mpImpl->getColumnCount()) && (rPos.mnRow >= 0) && (rPos.mnRow < mpImpl… in isValid()
803 aPos.mnRow = mpImpl->getRowCount()-1; in getLastCell()
881 findMergeOrigin( mpImpl->mxTable.get(), aPos.mnCol, aPos.mnRow, aPos.mnCol, nTemp ); in getPreviousCell()
889 else if( bEdgeTravel && (aPos.mnRow > 0) ) in getPreviousCell()
892 --aPos.mnRow; in getPreviousCell()
910 findMergeOrigin( mpImpl->mxTable, aPos.mnCol, aPos.mnRow, aPos.mnCol, aPos.mnRow ); in getNextCell()
917 aPos.mnRow = rPos.mnRow; in getNextCell()
928 if( bEdgeTravel && ((aPos.mnRow + 1) < mpImpl->getRowCount()) ) in getNextCell()
931 aPos.mnRow += 1; in getNextCell()
954 findMergeOrigin( mpImpl->mxTable, aPos.mnCol, aPos.mnRow, nTemp, aPos.mnRow ); in getPreviousRow()
958 if( aPos.mnRow > 0 ) in getPreviousRow()
960 --aPos.mnRow; in getPreviousRow()
964 aPos.mnRow = mpImpl->mxTable->getRowCount()-1; in getPreviousRow()
984 findMergeOrigin( mpImpl->mxTable, aPos.mnCol, aPos.mnRow, aPos.mnCol, aPos.mnRow ); in getNextRow()
990 aPos.mnRow += xCell->getRowSpan(); in getNextRow()
992 if( aPos.mnRow < mpImpl->mxTable->getRowCount() ) in getNextRow()
997 aPos.mnRow = 0; in getNextRow()
1317 if( CheckTableHit( rPnt, aPos.mnCol, aPos.mnRow, 0 ) == SDRTABLEHIT_CELLTEXTAREA ) in CheckTextHit()
1318 return aPos.mnRow * mpImpl->mxTable->getColumnCount() + aPos.mnCol; in CheckTextHit()
1602 …set( dynamic_cast< Cell* >( mpImpl->mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in setActiveCell()
1606 findMergeOrigin( mpImpl->mxTable.get(), rPos.mnCol, rPos.mnRow, aOrigin.mnCol, aOrigin.mnRow ); in setActiveCell()
1607 …ynamic_cast< Cell* >( mpImpl->mxTable->getCellByPosition( aOrigin.mnCol, aOrigin.mnRow ).get() ) ); in setActiveCell()
2709 const sal_Int32 nRows = rEnd.mnRow - rStart.mnRow + 1; in CloneRange()
2731 …mic_cast< Cell* >( xTable->getCellByPosition( rStart.mnCol + nCol, rStart.mnRow + nRow ).get() ) ); in CloneRange()
2745 …xNewSet->setPropertyValue( sHeight, Any( mpImpl->mpLayouter->getRowHeight( rStart.mnRow + nRow ) )… in CloneRange()