[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Specifies an event handler signalled to resize a control to the specified size constraints.
Source position: controls.pp line 691
type TConstrainedResizeEvent = procedure( |
Sender: TObject; |
var MinWidth: TConstraintSize; |
var MinHeight: TConstraintSize; |
var MaxWidth: TConstraintSize; |
var MaxHeight: TConstraintSize |
) of object; |
Sender |
|
TObject for the event notification. |
TConstrainedResizeEvent is an object procedure type that specifies an event handler signalled to resize a control to the specified size constraints. Used to implement the OnConstrainedResize event in TControl.
|
This handler can supply specific Constraints (size limits), when the control is resized. |
lazarus-ccr.sourceforge.net |