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

TcxCustomVerticalGrid.Rows Property

Returns the collection of rows within the control.

#Declaration

Delphi
property Rows: TcxVerticalGridRows read; write;

#Property Value

Type
TcxVerticalGridRows

#Remarks

The Rows property exposes the TcxVerticalGridRows object whose interface can be used to enumerate and get access to individual rows within the control.

The following code checks whether the second row within the vertical grid control has child rows and expands it accordingly:

Delphi
with cxDBVerticalGrid.Rows[1] do
begin
  if HasChildren then Expand(True);
end;
See Also