DataGridView.SelectAll Method

Definition

Selects all the cells in the DataGridView.

public:
 void SelectAll();
public void SelectAll ();
member this.SelectAll : unit -> unit
Public Sub SelectAll ()

Examples

The following code example demonstrates the use of the SelectAll method. To run this example, paste the code into a form that contains a DataGridView named dataGridView1 and a Button named selectAllButton, and ensure all events are associated with their event handlers.

private void selectAllButton_Click(object sender, EventArgs e)
{
    dataGridView1.SelectAll();
}
Private Sub selectAllButton_Click(ByVal sender As Object, _
    ByVal e As EventArgs) Handles clearSelectionButton.Click

    dataGridView1.SelectAll()

End Sub

Remarks

When the DataGridView is in column-selection mode and this method is called, each column's Selected property is set to true, and each row's Selected property is set to false.

Conversely, when the DataGridView is in row-selection mode and this method is called, each row's Selected property is set to true, and each column's Selected property is set to false.

Applies to

See also