Lines Matching refs:_nColumn
1957 …void TableControl_Impl::impl_getCellRect( ColPos _nColumn, RowPos _nRow, Rectangle& _rCellRect ) c… in impl_getCellRect() argument
1962 || ( COL_INVALID == _nColumn ) 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
2258 if ( ( _nColumn < 0 ) || ( _nColumn >= m_nColumnCount ) in goTo()
2267 m_nCurColumn = _nColumn; in goTo()
2276 …void TableControl_Impl::ensureVisible( ColPos _nColumn, RowPos _nRow, bool _bAcceptPartialVisibili… in ensureVisible() argument
2279 DBG_ASSERT( ( _nColumn >= 0 ) && ( _nColumn < m_nColumnCount ) in ensureVisible()
2285 if ( _nColumn < m_nLeftColumn ) in ensureVisible()
2286 impl_scrollColumns( _nColumn - m_nLeftColumn ); in ensureVisible()
2290 if ( _nColumn > m_nLeftColumn + nVisibleColumns - 1 ) in ensureVisible()
2292 impl_scrollColumns( _nColumn - ( m_nLeftColumn + nVisibleColumns - 1 ) ); in ensureVisible()