BB FlashBack SDK: FBEditor

OnStop

Description

Event handler called when movie stops playback.
 

Syntax

[C#/C++]
public void OnStop (Bool EndOfMovie);

[VB.NET]
Public Sub OnStop (ByVal EndOfMovie As Boolean)
 

Parameters

EndOfMovie - set to True if the end of the movie has been reached. Set to False if playback has stopped for another reason.
 

Setting the event handler

[C#]
fbEditor.OnStop += new IFBEditorEvents_OnStopEventHandler(MyOnStopHandler);
 

[VB]
AddHandler fbEditor.OnStop, AddressOf MyOnStopHandler
 

[Delphi]
FBEditor.OnStopEvent := MyOnStopHandler;
 

[C++ Builder]
Editor->OnStopEvent = MyOnStopHandler;

 

See Also

FBEditor::PlayEvent   FBEditor::PauseEvent