BB FlashBack SDK: FBPlayer

OnMouseMove

Description

Event handler called when the mouse is moved over the movie playback area.
 

Syntax

[C#/C++]
void OnMouseMove(long X, long Y);
 

[VB.NET]
Public Sub OnMouseMove (ByVal X As Long, ByVal Y As Long)
 

Parameters

X - the x coordinate of the mouse, relative to the top left corner of the movie playback area.

Y - the y coordinate of the mouse, relative to the top left corner of the movie playback area.

 
 

Setting the event handler

[C#]
void OnMouseMoveHandler (int X, int Y)
{}

player.OnMouseMove += new IFBPlayerEvents_OnMouseMoveEventHandler(OnMouseMoveHandler);
 

[VB]
AddHandler fbPlayer.OnMouseMove, AddressOf OnMouseMoveHandler
 

[Delphi]
FBPlayer.OnMouseMove := OnMouseMoveHandler;
 

[C++ Builder]
Player->OnMouseMove = OnMouseMoveHandler;

 

See Also

FBPlayer::OnMouseDown  FBPlayer::OnMouseUp  FBPlayer::OnClick