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

TdxFramedControlDragBorderEvent Type

The procedural type for border drag events that occur in framed controls.

#Declaration

Delphi
TdxFramedControlDragBorderEvent = procedure(ASender: TdxFramedControl; ABorder: TcxBorder; var ADone: Boolean) of object;

#Parameters

Name Type Description
ASender TdxFramedControl

The framed control that raised the border drag event.

ABorder TcxBorder

Returns the dragged border.

ADone Boolean

If False (default), the application layout formed by adjacent resizable frames is recalculated automatically after a frame resize operation. Set this parameter to True if you need to update the layout in the event handler.

#Remarks

A framed control’s OnDragBorder event references the TdxFramedControlDragBorderEvent procedural type.

See Also