Vcl.Controls.TConstrainedResizeEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TConstrainedResizeEvent = procedure(Sender: TObject; var MinWidth, MinHeight,
MaxWidth, MaxHeight: Integer) of object;

C++

typedef void __fastcall (__closure *TConstrainedResizeEvent)(System::TObject* Sender, int &MinWidth, int &MinHeight, int &MaxWidth, int &MaxHeight);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

TConstrainedResizeEvent is the function type for an OnConstrainedResize event.

TConstrainedResizeEvent has the following parameters:



Parameter Meaning

Sender

The control which generated the event.

MinWidth | MinHeight | MaxWidth | MaxHeight

The size constraints associated with the resize operation.



See Also