Lines Matching refs:_nRow
1957 …void TableControl_Impl::impl_getCellRect( ColPos _nColumn, RowPos _nRow, Rectangle& _rCellRect ) c… in impl_getCellRect() argument
1963 || ( ROW_INVALID == _nRow ) in impl_getCellRect()
1970 TableCellGeometry aCell( *this, impl_getAllVisibleCellsArea(), _nColumn, _nRow ); in impl_getCellRect()
2252 bool TableControl_Impl::goTo( ColPos _nColumn, RowPos _nRow ) in goTo() argument
2259 || ( _nRow < 0 ) || ( _nRow >= m_nRowCount ) in goTo()
2268 m_nCurRow = _nRow; in goTo()
2276 …void TableControl_Impl::ensureVisible( ColPos _nColumn, RowPos _nRow, bool _bAcceptPartialVisibili… in ensureVisible() argument
2280 && ( _nRow >= 0 ) && ( _nRow < m_nRowCount ), in ensureVisible()
2298 if ( _nRow < m_nTopRow ) in ensureVisible()
2299 impl_scrollRows( _nRow - m_nTopRow ); in ensureVisible()
2303 if ( _nRow > m_nTopRow + nVisibleRows - 1 ) in ensureVisible()
2304 impl_scrollRows( _nRow - ( m_nTopRow + nVisibleRows - 1 ) ); in ensureVisible()