aspnet-devexpress-dot-web-dot-aspxverticalgrid-d2625a2f.md
Gets the collection of all rows within the ASPxVerticalGrid control.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public ReadOnlyGridColumnCollection<VerticalGridRow> AllRows { get; }
Public ReadOnly Property AllRows As ReadOnlyGridColumnCollection(Of VerticalGridRow)
| Type | Description |
|---|---|
| ReadOnlyGridColumnCollection<VerticalGridRow> |
A collection of all the rows in an ASPxVerticalGrid.
|
The AllRows property provides access to a collection that contains all the rows of the ASPxVerticalGrid control. This collection is read-only, since individual rows can be manipulated (added or removed) at the level of a grid control (ASPxVerticalGrid.Rows). The collection obtained via the AllRows property allows you to easily iterate through all the grid rows and access any required row identified by its specific setting or type.
See Also