mobileFX VHX
VHX Object / Stop Method
In This Topic
    Stop Method
    In This Topic
    Description
    Stops a media that is currently playing.
    Syntax
    Visual Basic
    Public Sub Stop() 
    Example
    private void axVHX1_OnPlayerReady(object sender, EventArgs e)
    {
        axVHX1.Open("file///path-to-your-video-file");        
    }
    private void btnStop_Click(object sender, EventArgs e)
    {
        axVHX1.Stop();
    }
    See Also