Vcl.MPlayer.EMPNotify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

EMPNotify = procedure (Sender: TObject; Button: TMPBtnType;
var DoDefault: Boolean) of object;

C++

typedef void __fastcall (__closure *EMPNotify)(System::TObject* Sender, TMPBtnType Button, bool &DoDefault);

Properties

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

Description

EMPNotify is the type of event handlers that respond when the user interacts with a TMediaPlayer component.

Sender is the TMediaPlayer component whose button was clicked.

Button indicates the button that was clicked. It can be one of the following values: btBack, btEject, btNext, btPause, btPlay, btPrev, btRecord, btStep, or btStop.

DoDefault returns an indication of whether the media player should make its default response after the event handler exits.

See Also