Vcl.DBCtrls.TLoadPictureEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLoadPictureEvent = procedure (Sender: TObject; Picture: TPicture;
var Loaded: Boolean) of object;

C++

typedef void __fastcall (__closure *TLoadPictureEvent)(System::TObject* Sender, Vcl::Graphics::TPicture* Picture, bool &Loaded);

Properties

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

Description

TLoadPictureEvent specifies when the event handler loads a picture.

When using TLoadPictureEvent remember the following parts:

  • Sender - the object calling this event handler.
  • Picture - a picture to load.
  • Loaded - it specifies when the event handler loads the picture.

See Also