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.DataRowSizing Property

Specifies if users can adjust the height of data rows.

#Declaration

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

#Property Value

Type Default Description
Boolean False
False
Default. Users are unable to adjust the height of data rows. You can only use the OptionsView.DataRowHeight property in code.
True
Users can drag the bottom edge of a row within the row indicator to resize all data rows simultaneously. A double-click on a bottom row edge within the row indicator resets that row’s height according to current content size.

Note

If the row indicator is hidden, users cannot change the row height regardless of this property value.

#Remarks

Set DataRowSizing and GridView.OptionsView.Indicator properties to True to allow users to resize the data row height.

#Banded View Limitations

Users cannot resize the data row height if the Position.LineCount property value of any visible banded column exceeds 1.

#Default Value

The DataRowSizing property’s default value is False.

See Also