BB FlashBack SDK: FBPlayer

OnLoading

Description

This event handler is called to indicate movie loading progress.

Syntax

[C#/C++]
protected virtual void OnLoading(int loaded, int total)

[VB.NET]
Protected Overridable Sub OnLoading(ByVal Loaded As Integer, ByVal Total As Integer)

Parameter Description
Loaded The number of movie frames loaded so far.
Total The number of total frames in the movie.

Remarks

Use this event to display progress indicators while loading lengthy movies.

See Also

OnPause event, LoadFile method, Play method