FMX.Forms.TCommonCustomForm.OnResize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnResize: TNotifyEvent read FOnResize write FOnResize;

C++

__property System::Classes::TNotifyEvent OnResize = {read=FOnResize, write=FOnResize};

Properties

Type Visibility Source Unit Parent
event public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Occurs immediately after the form is resized.

Use OnResize to make any final adjustments after the form is resized.

OnResize is an event handler of type TNotifyEvent.

See Also