FZ_FormBase.ExecuteMeasureProc

Executes the measurement of processing unit

Public Shared Function ExecuteMeasureProc( _
    ByVal unitNo As Integer _
) As Integer

Parameters
unitNo
Processing unit number
Input

Return Value
Returns 0 when executes the measurement of processing unit succeeded.
Otherwise returns a non-zero value.

Description
Executes the measurement of the processing unit for which the number is specified by the argument unitNo in the concerned scene.

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

        ' Executes the measurement of processing unit 0
        ExecuteMeasureProc(0)

    End Sub