In This Topic
Description
Starts/resumes playing a media.
Syntax
| Visual Basic |
|---|
Public Sub Play()
|
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();
}
private void btnPlay_Click(object sender, EventArgs e)
{
axVHX1.Play();
}
See Also