DataGridView.SelectAll Method

Definition

Selects all the cells in the DataGridView.

C#
public void 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.

C#
private void selectAllButton_Click(object sender, EventArgs e)
{
    dataGridView1.SelectAll();
}

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

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also