Vcl.ExtCtrls.THeader.OnSized

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnSized: TSectionEvent read FOnSized write FOnSized;

C++

__property TSectionEvent OnSized = {read=FOnSized, write=FOnSized};

Properties

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

Description

Occurs after the header has been resized.

Write an OnSized event handler to perform special processing after the header has been resized. In this event, the AWidth parameter is the width of the section before it was resized. Use the SectionWidth property to determine the new size of the section.

OnSized is an event handler of type Vcl.ExtCtrls.TSectionEvent.

See Also