Vcl.ComCtrls.TCustomDrawPanelEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCustomDrawPanelEvent = procedure(StatusBar: TCustomStatusBar; Panel: TStatusPanel;
const Rect: TRect) of object;

C++

typedef void __fastcall (__closure *TCustomDrawPanelEvent)(TCustomStatusBar* StatusBar, TStatusPanel* Panel, const Winapi::Windows::TRect &Rect);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls Vcl.ComCtrls

Description

TCustomDrawPanelEvent is the type of the OnDrawPanel event handler.

StatusBar is the status bar object that contains the panel.

Panel is the panel that needs to be redrawn.

Rect gives the (new) dimensions of the status panel.

See Also