DataGrid::IsSelected Method (Int32)
.NET Framework (current version)
Gets a value indicating whether a specified row is selected.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- row
-
Type:
System::Int32
The number of the row you are interested in.
Use this method with the Select, UnSelect, and ResetSelection methods to manipulate the selection state of a particular row.
The following code example demonstrates the use of this member.
// 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: