Lines Matching refs:mnCol
384 for( aPos.mnCol = 0; aPos.mnCol < nColCount; ++aPos.mnCol ) in ApplyCellStyles()
401 if( rStyle.mbUseFirstColumn && (aPos.mnCol == 0) ) in ApplyCellStyles()
405 else if( rStyle.mbUseLastColumn && (aPos.mnCol == nColCount-1) ) in ApplyCellStyles()
425 if( (aPos.mnCol & 1) == 0 ) in ApplyCellStyles()
542 …if( (maEditPos.mnRow >= getRowCount()) || (maEditPos.mnCol >= getColumnCount()) || (getCell( maEdi… in update()
547 if(maEditPos.mnCol >= getColumnCount()) in update()
548 maEditPos.mnCol = getColumnCount()-1; in update()
624 xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in getCell()
785 …return (rPos.mnCol >= 0) && (rPos.mnCol < mpImpl->getColumnCount()) && (rPos.mnRow >= 0) && (rPos.… in isValid()
802 aPos.mnCol = mpImpl->getColumnCount()-1; in getLastCell()
881 findMergeOrigin( mpImpl->mxTable.get(), aPos.mnCol, aPos.mnRow, aPos.mnCol, nTemp ); in getPreviousCell()
884 if( aPos.mnCol > 0 ) in getPreviousCell()
886 --aPos.mnCol; in getPreviousCell()
891 aPos.mnCol = mpImpl->mxTable->getColumnCount()-1; in getPreviousCell()
910 findMergeOrigin( mpImpl->mxTable, aPos.mnCol, aPos.mnRow, aPos.mnCol, aPos.mnRow ); in getNextCell()
916 aPos.mnCol += xCell->getColumnSpan(); in getNextCell()
922 aPos.mnCol += xCell->getColumnSpan(); in getNextCell()
925 if( aPos.mnCol < mpImpl->mxTable->getColumnCount() ) in getNextCell()
930 aPos.mnCol = 0; in getNextCell()
954 findMergeOrigin( mpImpl->mxTable, aPos.mnCol, aPos.mnRow, nTemp, aPos.mnRow ); in getPreviousRow()
962 else if( bEdgeTravel && (aPos.mnCol > 0) ) in getPreviousRow()
965 --aPos.mnCol; in getPreviousRow()
984 findMergeOrigin( mpImpl->mxTable, aPos.mnCol, aPos.mnRow, aPos.mnCol, aPos.mnRow ); in getNextRow()
986 aPos.mnCol = rPos.mnCol; in getNextRow()
995 if( bEdgeTravel && (aPos.mnCol + 1) < mpImpl->mxTable->getColumnCount() ) in getNextRow()
998 aPos.mnCol += 1; in getNextRow()
1000 while( aPos.mnCol < mpImpl->mxTable->getColumnCount() ) in getNextRow()
1005 aPos.mnCol += 1; 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 …mpImpl->mxActiveCell.set( dynamic_cast< Cell* >( mpImpl->mxTable->getCellByPosition( rPos.mnCol, r… in setActiveCell()
1606 findMergeOrigin( mpImpl->mxTable.get(), rPos.mnCol, rPos.mnRow, aOrigin.mnCol, aOrigin.mnRow ); in setActiveCell()
1607 …l.set( dynamic_cast< Cell* >( mpImpl->mxTable->getCellByPosition( aOrigin.mnCol, aOrigin.mnRow ).g… in setActiveCell()
2708 const sal_Int32 nColumns = rEnd.mnCol - rStart.mnCol + 1; in CloneRange()
2731 …xTargetCell->cloneFrom( dynamic_cast< Cell* >( xTable->getCellByPosition( rStart.mnCol + nCol, rSt… in CloneRange()
2754 …xNewSet->setPropertyValue( sWidth, Any( mpImpl->mpLayouter->getColumnWidth( rStart.mnCol + nCol ) … in CloneRange()