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

TcxCustomRow.Parent Property

Specifies the current row’s parent row.

#Declaration

Delphi
property Parent: TcxCustomRow read; write;

#Property Value

Type
TcxCustomRow

#Remarks

You can use this property to:

  • Determine if the current row has a parent (the Parent property returns nil if the row is at the root level within a vertical grid control). Alternatively, you can use the Level property;

  • Access the nested row’s parent row. Note that you need to cast the Parent property value to the corresponding class (for example, TcxCategoryRow) to access the parent row’s type-specific members;

  • Move the nested row to the vertical grid’s root level or assign the row to a specific parent row (changing the Parent property value changes the row’s nesting level and Level property value).

See Also