DataGrid::Select Method (Int32)
.NET Framework (current version)
Selects a specified row.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- row
-
Type:
System::Int32
The index of the row to select.
Use this method with the IsSelected, UnSelect, and ResetSelection methods to manipulate the selection state of a particular row.
The following code example demonstrates the use of this member.
// Select the first row. private: void button7_Click( Object^ /*sender*/, EventArgs^ /*e*/ ) { myDataGrid->Select(0); } // Check if the first row is selected. private: void button8_Click( Object^ /*sender*/, EventArgs^ /*e*/ ) { if ( myDataGrid->IsSelected( 0 ) ) { MessageBox::Show( "Row selected", "Message", MessageBoxButtons::OK, MessageBoxIcon::Exclamation ); } else { MessageBox::Show( "Row not selected", "Message", MessageBoxButtons::OK, MessageBoxIcon::Exclamation ); } } // Deselect the first row. void button11_Click( Object^ /*sender*/, EventArgs^ /*e*/ ) { myDataGrid->UnSelect( 0 ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: