FZ_PanDAForm.GetMeasureOut
Gets whether to output the measurement result or not
Public Shared Function GetMeasureOut( _
) As Integer
Parameters
None.
Return Value
Returns information of the measurement result output availability.
0: Measurement result output not available
1: Measurement result output available
Description
Gets information about a with/without measurement result output.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim measureOut As Integer
' Gets output information of the measurement result
measureOut = GetMeasureOut()
End Sub