FZ_FormBase.GetTotalJudge

Gets the overall judgement result

Public Shared Function GetTotalJudge( _
) As Integer

Parameters
None.

Return Value
Returns the overall judgement result.
1: Judged as OK
-1: Judged as NG
0: Unmeasured

Description
Gets the overall judgement result.

Example
    Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

       Dim judge As Integer

       ' Gets overall judgement result
       judge = GetTotalJudge()

    End Sub