ASPxVerticalGrid.AllRows Property
Gets the collection of all rows within the ASPxVerticalGrid control.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
ReadOnlyGridColumnCollection<VerticalGridRow> | A collection of all the rows in an ASPxVerticalGrid. |
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