DataGridView::AreAllCellsSelected Method (Boolean)
Returns a value indicating whether all the DataGridView cells are currently selected.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- includeInvisibleCells
-
Type:
System::Boolean
true to include the rows and columns with Visible property values of false; otherwise, false.
Return Value
Type: System::Booleantrue 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.
Available since 2.0