BB FlashBack SDK: FBEditor

SetProgressorCaption

Description

Event handler called at the start of a process, to pass the name of the process, such as 'Exporting to SWF'. This caption can be used in any progress dialog displayed.
 

Syntax

[C#/C++]
public void SetProgressorCaption (String sCaption)

[VB.NET]
Public Sub SetProgressorCaption (ByVal sCaption As String)
 

Parameters

sCaption - the name of the process.

 

Setting the event handler

[C#]
fbEditor.SetProgressorCaption += new IFBEditorEvents_SetProgressorCaptionEventHandler(EditorSetProgressorCaption);
 

[VB]
AddHandler fbEditor.SetProgressorCaption, AddressOf EditorSetProgressorCaption
 

[Delphi]
FBEditor.OnSetProgressorCaption := EditorSetProgressorCaption;
 

[C++ Builder]
Editor->OnSetProgressorCaption = EditorSetProgressorCaption;

 

See Also

FBEditor::PlayEvent   FBEditor::ProgressorEvent  FBEditor::ProgressorEventEx  FBEditor::GetProgressorCaption