FZ_FormBase.GetMeasureTime
Gets a measurement processing time
Public Shared Function GetMeasureTime( _
) As Integer
Parameters
None.
Return Value
Returns the measurement processing time.
Description
Gets the time between a measurement start and end.
The unit is a millisecond. Time shorter than one millisecond is rounded off.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim measTime As Integer
' Gets a measurement processing time
measTime = GetMeasureTime()
End Sub