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