FZ_PanDAForm.SetMeasureOut
Sets whether to output the measurement result or not
Public Shared Function SetMeasureOut( _
ByVal mode As Integer _
) As Integer
Parameters
mode
|
Measurement result output availability
0: Measurement result output not available
1: Measurement result output available
|
Input
|
Return Value
Returns 0 when the setting whether or not to output the measurement result succeeded.
Otherwise returns a non-zero value.
Description
Sets 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
' Set the measurement result output to ON
SetMeasureOut(1)
End Sub