VideoPlayer.Play method |
|
Remarks
Plays the video previously loaded inside the given player through one between VideoPlayer.Load or VideoPlayer.LoadForEAX methods.
A successful call to this method invokes the CallbackForPlayersEvents delegate with the nEvent parameter set to EV_SOUND_PLAYING.
Once the sound has been performed completely, the CallbackForPlayersEvents delegate is invoked with the nEvent parameter set to EV_SOUND_DONE.
For further details about the use of the embedded video player see the VideoPlayer class section.
For details about video clips rendering refer to the How to play video files through DirectShow section.
Syntax
[Visual Basic] Public Function Play ( nPlayerIndex as Int16 ) as enumErrorCodes |
[C#] public enumErrorCodes Play ( Int16 nPlayerIndex ); |
[C++] public: enumErrorCodes Play ( Int16 nPlayerIndex ); |
Parameter |
Description |
|
|
nPlayerIndex |
Number representing the zero-based index of the player that will use the video player. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred (see the LastError property for further error details) |
enumErrorCodes.NOERROR (0) |
The method call was successful. |