PlayVideo

Calling this method sets the video play mode for play, stop, and pause.

 

JavaScript

 

PlayVideo(

       Play)

 

C#

 

void PlayVideo(

       VideoPlayStatus Play = VideoPlayStatus.VPS_PLAY)

 

C++

 

HRESULT PlayVideo(

       VideoPlayStatus Play)

Parameters

Play

An enum determining the play operation. The VideoPlayStatus enum can use any of the following values:

·          VPS_PAUSE = 0,

·          VPS_PLAY = 1

·          VPS_STOP = 2

Exceptions

See: HRESULT Return Values for a list of possible values returned by the HRESULT.