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

TcxGridTableOptionsCustomize.GroupRowSizing Property

Specifies if users can resize group rows.

#Declaration

Delphi
property GroupRowSizing: Boolean read; write; default False;

#Property Value

Type Default Description
Boolean False
False
Default. Users cannot change the height of group rows. You can use only the GridView.OptionsView.GroupRowHeight property to change the group row height.
True

Users can drag the border between a group row and an adjacent row in the row indicator to change group row height. Set the GridView.OptionsView.Indicator property to True to display the row indicator.

A double-click on a group row border in the row indicator resets the group row height to the automatically calculated value (the GridView.OptionsView.GroupRowHeight property value changes to 0).

#Remarks

Set GroupRowSizing and GridView.OptionsView.Indicator properties to True to allow users to resize the height of group rows.

#Default Value

The GroupRowSizing property’s default value is False.

See Also