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

TcxTreeListOptionsCustomizing.ColumnVertSizing Property

Specifies whether end-users can vertically resize columns by dragging their bottom edges.

#Declaration

Delphi
property ColumnVertSizing: Boolean read; write; default True;

#Property Value

Type Default
Boolean True

#Remarks

Vertically resizing columns automatically adjusts the corresponding column cell heights. To prohibit end-users from vertically resizing columns, set the ColumnVertSizing property to False.

To programmatically specify a column header‘s height, use the column’s Position.LineCount property. To make column cells occupy as many lines as necessary to entirely display their contents, enable the OptionsView.CellAutoHeight option.

Changing a column’s height fires the TreeList control’s OnColumnSizeChanged, OnLayoutChanged, and OnChange events.

The default value of the ColumnVertSizing property is True.

See Also