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

TcxCustomGridRecord.Expanded Property

Specifies whether the record is expanded.

#Declaration

Delphi
property Expanded: Boolean read; write;

#Property Value

Type
Boolean

#Remarks

Read the Expanded property value to determine whether the record is currently expanded. Assign True to this property to expand the record or False to collapse it. Note that changing a record’s expanded state using the Expanded property doesn’t produce a recursive effect. For instance, expanding a record by setting its Expanded property to True will not expand this record’s child records. If you need to expand or collapse records recursively, use the Expand and Collapse methods.

Please refer to the Expand method description for details on which records support expanding and collapsing operations. Additionally, see the Expandable property description to determine when records can be expanded or collapsed.

Note

Layout Views in lvvmSingleRow or lvvmMultiRow display mode rotate card captions in collapsed cards (records). Use the dxUseAntialiasingForRotatedText global constant to control if the ClearType antialiasing is applied to a rotated text (including these captions) in your application.

See Also