mobileFX VHX
VHX Object / Pause Method
Pause Method
Description
Pauses a media that is curently playing.
Syntax
Visual Basic
Public Sub Pause() 
Example
private void axVHX1_OnPlayerReady(object sender, EventArgs e)
{
    axVHX1.Open("file///path-to-your-video-file");        
}
private void btnPause_Click(object sender, EventArgs e)
{
    axVHX1.Pause();
}
See Also