Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridDataRow Class

A data row within a grid Table View.

#Declaration

Delphi
TcxGridDataRow = class(
    TcxCustomGridRow
)

#Remarks

A data row displays data in cells, one per each column shown in the View. With TcxGridDataRow members, you can retrieve values and text representation of cells, get the group level of a row and get the row’s positions within the View and bound data source.

You can access rows currently displayed using the View’s ViewData.Rows array. It maintains a collection of currently visible rows, i.e. rows not hidden under collapsed row(s). The first row in this collection identifies the top visible row.

TcxGridDataRow is also the base class for TcxGridMasterDataRow and TcxGridNewItemRow rows representing a row in a master View and a row for entering new data respectively.

For more information about rows see the TcxCustomGridRecord class topic.

See Also