DataGrid::UnSelect Method (Int32)

 

Unselects a specified row.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void UnSelect(
	int row
)

Parameters

row
Type: System::Int32

The index of the row to deselect.

Use this method with the IsSelected, Select, and ResetSelection methods to manipulate the selection state of a particular row.

The following code example demonstrates the use of this member.

   // On Click of Button "Unselect Row" this event is raised.
private:
   void UnselectRow_Clicked( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Unselect the current row from the Datagrid
      myDataGrid->UnSelect( myDataGrid->CurrentRowIndex );
   }

.NET Framework
Available since 1.1
Return to top
Show: