mobileFX VHX
VHX Object / HMI_PLAY Property
In This Topic
    HMI_PLAY Property
    In This Topic
    Description
    Starts/resumes playing a defined media on a Human Machine Interface.
    Property type
    Read-write property
    Syntax
    Visual Basic
    Public Property HMI_PLAY As Boolean
    Return Type
    Always false.
    Remarks
    After assigned a value of true in order to start playing/resume the media, it is reset to false.
    Example
    private void axVHX1_OnPlayerReady(object sender, EventArgs e)
    {
        axVHX1.HMI_URL = "file:///path-to-your-file";
    }
    private void btnPause_Click(object sender, EventArgs e)
    {
        axVHX1.HMI_PAUSE = true;
    }
    private void btnPlay_Click(object sender, EventArgs e)
    {
        axVHX1.HMI_PLAY = true;
    }
    See Also