FZ_FormBase.ExecuteMeasureOut
Executes output the measurement result of processing unit
Public Shared Function ExecuteMeasureOut( _
ByVal unitNo As Integer _
) As Integer
Parameters
unitNo
|
Processing unit number
|
Input
|
Return Value
Returns 0 when executes output the measurement result of processing unit succeeded.
Otherwise returns a non-zero value.
Description
Output the measurement result 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 output the measurement result of processing unit 0
ExecuteMeasureOut(0)
End Sub