TcxCustomVerticalGrid.Rows Property
Returns the collection of rows within the control.
Declaration
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:
with cxDBVerticalGrid.Rows[1] do
begin
if HasChildren then Expand(True);
end;
See Also