Stops the show running and frees up any resources from playback.

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

Syntax

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

Remarks

Override this function to stop playback and clean up any resources. Once this function is called the InitialiseShow()()() function should be called before playback can start again.

Examples

Stops the main output playing and frees up the control.
CopyC#
public override void StopShow()
{
    if(mainOutput != null) mainOutput.Stop();
    mainOutput = null;
}

See Also