Vcl.ExtCtrls.TSplitter.OnMoved

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnMoved: TNotifyEvent read FOnMoved write FOnMoved;

C++

__property System::Classes::TNotifyEvent OnMoved = {read=FOnMoved, write=FOnMoved};

Properties

Type Visibility Source Unit Parent
event published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TSplitter

Description

Occurs after the user has retiled the form using the splitter.

Write an OnMoved event handler to take specific action when the user finishes dragging the edge of the neighboring control using the splitter. For example, after resizing a control on the edge of the form, use an OnMoved event handler to update the layout of the new client area of the form. Use the ClientRect property of the form to determine the new size remaining.

See Also

Code Examples