aspnet-devexpress-dot-web-dot-aspxverticalgrid-72a34706.md
Gets the collection of toolbars in the ASPxVerticalGrid control.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(null)]
public VerticalGridToolbarCollection Toolbars { get; }
<DefaultValue(Nothing)>
Public ReadOnly Property Toolbars As VerticalGridToolbarCollection
| Type | Default | Description |
|---|---|---|
| VerticalGridToolbarCollection | null |
A VerticalGridToolbarCollection object which represents the collection of toolbars within the grid.
|
The ASPxVerticalGrid stores toolbars (which are VerticalGridToolbar class instances) in its Toolbars collection. You can add or remove toolbars, change their availability and position, and populate them with toolbar items (VerticalGridToolbarItem class instances) using the VerticalGridToolbar.Items property. Toolbar items can trigger standard grid commands (that is data item editing, deletion, creation, etc.) and any custom actions, if required (VerticalGridToolbarItem.Command).
Use the following properties to specify the toolbar settings:
See Also