Starts the show and begins playback of the clip.

Namespace:  ScreenMonkey.Clips
Assembly:  ScreenMonkey.Clips (in ScreenMonkey.Clips.dll) Version: 3.2.0.0 (3.3.1.4)

Syntax

C#
public virtual void StartShow()
Visual Basic (Declaration)
Public Overridable Sub StartShow
Visual C++
public:
virtual void StartShow()

Remarks

You should override this function to perform any operations that are required to begin playback.

Examples

Starts the main output playing.
CopyC#
public override void StartShow()
{
    mainOutput.Play();
}

Exceptions

ExceptionCondition
ScreenMonkey.Clips.Exceptions..::.ClipStartShowExceptionOcurrs if something has gone wrong while trying to start the show. the inner exception will give more information about the precise nature of the fault.

See Also