Skip to main content
Tab

ASPxVerticalGrid.DataRows Property

Gets the collection of all data rows in the ASPxVerticalGrid control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ReadOnlyGridColumnCollection<VerticalGridDataRow> DataRows { get; }

Property Value

Type Description
ReadOnlyGridColumnCollection<VerticalGridDataRow>

A collection of data rows in an ASPxVerticalGrid.

Remarks

The DataRows property provides access to a collection that contains data 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 DataRows property allows you to easily iterate through data grid rows and access any required column row identified by its name, field name, or caption.

See Also