mobileFX VHX
VHX Object / Open Method
The path, local or online, of the media to play/resume.
Open Method
Description
Loads and starts playing a media.
Syntax
Visual Basic
Public Sub Open( _
   ByVal URL As String _
) 
Parameters
URL
The path, local or online, of the media to play/resume.
Remarks
It will play the media only if MediaAutoPlay is set to false. Otherwise, a call to Play() is required.
Example
private void axVHX1_OnPlayerReady(object sender, EventArgs e)
{
    axVHX1.Open("file///path-to-your-video-file");        
}
See Also