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

ASPxVerticalGrid.DataRows Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public ReadOnlyGridColumnCollection<VerticalGridDataRow> DataRows { get; }

Property Value

Type Description
ReadOnlyGridColumnCollection<VerticalGridDataRow>

A ReadOnlyGridColumnCollection<T><VerticalGridDataRow,> object that is a collection of data rows on 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