Vcl.ExtCtrls.TSectionEvent
Delphi
TSectionEvent = procedure(Sender: TObject;
ASection, AWidth: Integer) of object;
C++
typedef void __fastcall (__closure *TSectionEvent)(System::TObject* Sender, int ASection, int AWidth);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
type typedef |
public | Vcl.ExtCtrls.pas Vcl.ExtCtrls.hpp |
Vcl.ExtCtrls | Vcl.ExtCtrls |
Description
TSectionEvent is the type of event handlers, like OnSized, that respond when a section of a THeader control is resized.
Sender is the header control.
ASection is the index of the section that was resized.
AWidth is the width of the section.