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::AreAllCellsSelected Method (Boolean)

 

Returns a value indicating whether all the DataGridView cells are currently selected.

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

public:
bool AreAllCellsSelected(
	bool includeInvisibleCells
)

Parameters

includeInvisibleCells
Type: System::Boolean

true to include the rows and columns with Visible property values of false; otherwise, false.

Return Value

Type: System::Boolean

true if all cells (or all visible cells) are selected or if there are no cells (or no visible cells); otherwise, false.

The SelectedCells collection does not perform efficiently with large selections. To determine whether all the cells in the DataGridView have been selected before you access the contents of the SelectedCells collection, check the return value of the AreAllCellsSelected method. However, this method can cause rows to become unshared. For more information about DataGridView performance, see Best Practices for Scaling the Windows Forms DataGridView Control.

The following code example illustrates how to use this method to avoid calculations involving the SelectedCells collection.

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