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

TcxRowInfo Record

In This Article

Represents a structure storing information on a single row within a data controller.

#Declaration

Delphi
TcxRowInfo = record

#Remarks

The TcxRowInfo type represents the structure for storing information on a single row to pass to the data controller’s members. This structure is filled by the GetRowInfo function, which returns the TcxRowInfo object describing a row (a data record or a grouping row) at a specific position. The RowInfo object is required by several methods (for instance, GetRowDisplayText and GetRowValue).

The Expanded field specifies the expansion status of the current row. It is applied only to grouping rows. For data records, Expanded is always False.

The Level field specifies the grouping level of a row, i.e. the level of the data group, containing the current row.

The RecordIndex field identifies the record index of a row. If the row represents a grouping row, RecordIndex specifies the record index of the first data record belonging to the current data group.

See Also