mobileFX VHX
VHX Object / HMI_PAUSE Property
In This Topic
    HMI_PAUSE Property
    In This Topic
    Description
    Pauses the media playing on a Human Machine Interface.
    Property type
    Read-write property
    Syntax
    Visual Basic
    Public Property HMI_PAUSE As Boolean
    Return Type
    Always false.
    Remarks
    After assigned a value of true in order to pause 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;
    }

    See Also