Skip to main content
A newer version of this page is available. .
Tab

ASPxVerticalGrid.AllRows Property

Gets the collection of all rows within the ASPxVerticalGrid control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ReadOnlyGridColumnCollection<VerticalGridRow> AllRows { get; }

Property Value

Type Description
ReadOnlyGridColumnCollection<VerticalGridRow>

A ReadOnlyGridColumnCollection<T><VerticalGridRow,> object that is a collection of all the rows within 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