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

VerticalGridDataRow Class

Serves as a base for classes that represent data rows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public class VerticalGridDataRow :
    VerticalGridHierarchicalRow,
    IWebColumnInfo,
    IDataSourceViewSchemaAccessor,
    IFilterColumn,
    IFilterablePropertyInfo,
    IWebGridDataColumn,
    IWebGridDataColumnBase,
    IWebGridColumn,
    IWebGridDataColumnAdapterOwner

Remarks

The ASPxVerticalGrid control is designed to display and edit tabular information. Data sources present this information using data fields and records.

The ASPxVerticalGrid stores its rows within the ASPxVerticalGrid.Rows collection. A row can be accessed by its caption or the name of the data source field to which it is bound.

The ASPxVerticalGrid supports bound and unbound rows. Bound rows obtain their data from the control’s data source. Their VerticalGridDataRow.FieldName property refers to a valid field in the data source. Unbound rows are not bound to any field in the data source. These rows must be populated manually by the ASPxVerticalGrid.CustomUnboundRowData event.

Settings provided by the VerticalGridDataRow class allow you to control how row data is displayed and edited, etc.

To learn more, see Data Rows.

See Also