ASPxVerticalGrid.AllRows Property
In This Article
Gets the collection of all rows within the ASPxVerticalGrid control.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public ReadOnlyGridColumnCollection<VerticalGridRow> AllRows { get; }
#Property Value
Type | Description |
---|---|
Read |
A collection of all the rows in an ASPx |
#Remarks
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