aspnet-devexpress-dot-web-dot-verticalgridcommandrow-f368a55a.md
Specifies the Select All check box visibility and selection mode.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(GridViewSelectAllCheckBoxMode.None)]
public GridViewSelectAllCheckBoxMode SelectAllCheckboxMode { get; set; }
<DefaultValue(GridViewSelectAllCheckBoxMode.None)>
Public Property SelectAllCheckboxMode As GridViewSelectAllCheckBoxMode
| Type | Default | Description |
|---|---|---|
| GridViewSelectAllCheckBoxMode | None |
One of the GridViewSelectAllCheckBoxMode enumeration values.
|
Available values:
| Name | Description |
|---|---|
| None |
The Select All check box is not displayed.
| | Page |
The Select All check box selects and deselects all rows on the current grid page.
| | AllPages |
The Select All check box selects and deselects all grid rows (on all grid pages).
|
Use the SelectAllCheckboxMode property to specify the Select All check box selection mode. If the SelectAllCheckboxMode property is set to None , the check box is not displayed.
See Also