FZ_FormBase.RunOut

Output RUN state

Public Shared Function RunOut( _
    ByVal ioIdent As String, _
    ByVal state As Integer _
) As Integer

Parameters
ioIdent
I/O identify name
Input
state
I/O state
Output

Return Value
Returns 0 when output RUN state is successful.
Otherwise returns a non-zero value.

Description
When specified the argument is Nothing, output all of I/O RUN state.

Example
    Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

        ' Output RUN state
        RunOut(SerialNormal, 0)

    End Sub