BB FlashBack SDK: FBEditor

PauseEvent

Description

Event handler called when movie is paused.
 

Syntax

[C#/C++]
public void PauseEvent (Bool *DoPause);

[VB.NET]
Public Sub PauseEvent (ByRef DoPause As Boolean)
 

Parameters

DoPause - pointer to value that is set to determine of the movie is paused. Set to True to pause the movie, False to have the movie continue to play.
 

Setting the event handler

[C#]
fbEditor.PauseEvent += new IFBEditorEvents_PauseEventEventHandler(EditorPauseEvent);
 

[VB]
AddHandler fbEditor.PauseEvent, AddressOf EditorPauseEvent
 

[Delphi]
FBEditor.OnPauseEvent := EditorPauseEvent;
 

[C++ Builder]
Editor->OnPauseEvent = EditorPauseEvent;

 

See Also

FBEditor::PlayEvent   FBEditor::StopEvent