Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridView::SelectAll Method ()

 

Selects all the cells in the DataGridView.

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

public:
void SelectAll()

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.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft