Lines Matching refs:i_rowIndex
112 …checkRowIndex_throw( ::svt::table::TableControl const & i_table, sal_Int32 const i_rowIndex ) const in impl_checkRowIndex_throw()
114 if ( ( i_rowIndex < 0 ) || ( i_rowIndex >= i_table.GetRowCount() ) ) in impl_checkRowIndex_throw()
167 void SAL_CALL SVTXGridControl::goToCell( ::sal_Int32 i_columnIndex, ::sal_Int32 i_rowIndex ) throw … in goToCell() argument
175 impl_checkRowIndex_throw( *pTable, i_rowIndex ); in goToCell()
177 pTable->GoTo( i_columnIndex, i_rowIndex ); in goToCell()
687 void SAL_CALL SVTXGridControl::selectRow( ::sal_Int32 i_rowIndex ) throw (RuntimeException, IndexOu… in selectRow() argument
694 impl_checkRowIndex_throw( *pTable, i_rowIndex ); in selectRow()
696 pTable->SelectRow( i_rowIndex, true ); in selectRow()
711 void SAL_CALL SVTXGridControl::deselectRow( ::sal_Int32 i_rowIndex ) throw (RuntimeException, Index… in deselectRow() argument
718 impl_checkRowIndex_throw( *pTable, i_rowIndex ); in deselectRow()
720 pTable->SelectRow( i_rowIndex, false ); in deselectRow()