Vcl.Controls.TControl.OnCanResize
Delphi
property OnCanResize: TCanResizeEvent read FOnCanResize write FOnCanResize;
C++
__property TCanResizeEvent OnCanResize = {read=FOnCanResize, write=FOnCanResize};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | protected | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | TControl |
Description
Occurs when an attempt is made to resize the control.
Use OnCanResize to adjust the way a control is resized. If necessary, change the new width and height of the control in the OnCanResize event handler. The OnCanResize event handler also allows applications to indicate that the entire resize should be aborted.
If there is no OnCanResize event handler, or if the OnCanResize event handler indicates that the resize attempt can proceed, the OnCanResize event is followed immediately by an OnConstrainedResize event.
OnCanResize is an event handler of type Vcl.Controls.TCanResizeEvent.