FZ_PanDAForm.SetJudgeWindow

Sets a judge display window

Public Shared Function SetJudgeWindow( _
    ByVal handle As IntPtr _
    ByVal locationX As Integer _
    ByVal locationY As Integer _
    ByVal fontSize As Integer _
) As Integer

Parameters
handle
Handle
Input
locationX
Upper left X coordinate of the window
Input
locationY
Upper left Y coordinate of the window
Input
fontSize
Font size
Input

Return Value
Returns 0 when the judge display window is successfully set.
Otherwise returns a non-zero value.

Description
Sets the judge display window.

Example
    Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load

        Dim mainWindow As ImageWindowM

        ' Sets the judge display window
        SetJudgeWindow(mainWindow.Handle, 46, 54, 12)

   End Sub