FZ_PanDAForm.ClearMeasureData
Initializes a processing unit measurement result
Public Function ClearMeasureData( _
) As Integer
Public Function ClearMeasureData( _
ByVal unitNo As Integer _
) As Integer
Parameters
unitNo
|
Unit number whose measurement value is cleared
|
Input
|
Return Value
Returns 0 when the measured values are successfully cleared.
Otherwise returns a non-zero value.
Description
Clears the measurement value of the specified processing unit.
When no argument was specified, clears measurement values of all the processing units of the current scene.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
' Clears the measurement value of unit number 1
ClearMeasureData(1)
' Clears the measurement values of all units
ClearMeasureData()
End Sub