Vcl.Controls.TControl.ConstrainedResize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ConstrainedResize(var MinWidth, MinHeight, MaxWidth, MaxHeight: Integer); virtual;

C++

virtual void __fastcall ConstrainedResize(int &MinWidth, int &MinHeight, int &MaxWidth, int &MaxHeight);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

Notify control of resize with constraints.

ConstrainedResize is called automatically when a control is resized and has nonzero Constraints. This allows the control to modify the constraints before they are applied.

As implemented in TControl, ConstrainedResize simply calls the OnConstrainedResize event handler.

See Also