aspnet-devexpress-dot-web-dot-aspxverticalgrid-8adeab28.md
Gets the collection of all data rows in the ASPxVerticalGrid control.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public ReadOnlyGridColumnCollection<VerticalGridDataRow> DataRows { get; }
Public ReadOnly Property DataRows As ReadOnlyGridColumnCollection(Of VerticalGridDataRow)
| Type | Description |
|---|---|
| ReadOnlyGridColumnCollection<VerticalGridDataRow> |
A collection of data rows in an ASPxVerticalGrid.
|
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