mobileFX VHX
VHX Object / HMI_STOP Property
In This Topic
    HMI_STOP Property
    In This Topic
    Description
    Stops the media playing on a Human Machine Interface.
    Property type
    Read-write property
    Syntax
    Visual Basic
    Public Property HMI_STOP As Boolean
    Return Type
    Always false.
    Remarks
    After assigned a value of true in order to stop playing 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 btnStop_Click(object sender, EventArgs e)
    {
        axVHX1.HMI_STOP = true;
    }
    See Also