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

TcxCustomGridRow Class

The base class for records in a grid Table View.

#Declaration

Delphi
TcxCustomGridRow = class(
    TcxCustomGridRecord
)

#Remarks

This class is the base class for Table View records. These records are referred to as rows. You can access rows currently displayed within a View using its ViewData.Rows property. A ViewData object reflects the current arrangement of visible rows within a View. Any rows within collapsed group rows do not exist in the ViewData.Rows property.

There are several types of rows displayed in Views derived from the TcxCustomGridRow class:

To return a value and text equivalent of a value in a column, use the Values and DisplayTexts arrays respectively.

The position of a row displayed in a View is determined by its Index property. When the row position is changed after sorting or grouping, the index is also changed. The RecordIndex property defines the position of the row in a data source.

For more information see the TcxCustomGridRecord class topic.

#Inheritance

See Also