OnPresentationStatusChanged

This event occurs when a presentation’s play status changes status (e.g. to paused). 

 

JavaScript

 

OnPresentationStatusChanged(

       PresentationID,

       Status)

 

C#

 

void OnPresentationStatusChanged(

       string PresentationID,

       PresentationStatus Status)

 

C++

 

HRESULT OnPresentationStatusChanged(

        BSTR PresentationID,

        PresentationStatus Status)

Parameters

PresentationID

The ID of the presentation whose status has changed.

Status

The status of the presentation for which the event should be called. The following are the possible values:

·          PS_PLAYING = 0

·          PS_NOTPLAYING = 1

·          PS_PAUSED = 2

·          PS_WAITINGTIME = 3

·          PS_WAITINGCLICK = 4

·          PS_BEFORE_SWITCHING_TO_ANOTHER_PRESENTATION = 5

·          PS_AFTER_SWITCHING_FROM_ANOTHER_PRESENTATION = 6