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

TcxCustomHeader.OnSectionEndResize Event

In This Article

Occurs after a header section had been resized.

#Declaration

Delphi
property OnSectionEndResize: TcxSectionNotifyEvent read; write;

#Remarks

The OnSectionEndResize event occurs after a section had been resized by clicking and dragging the section’s edge. Maximum and minimum section width settings can be accessed by the section’s MaxWidth and MinWidth properties. To prevent a section from being resized, set its AllowResize property to False.

Parameter Meaning
HeaderControl The header control, where section resizing occurs.
Section The resized section.

If you want to react during section resizing, handle the OnSectionTrack event.

See Also