FZ_PanDAForm.GetTextWindow

Gets information about the text display window setting

Public Shared Function GetTextWindow( _
   ByRef unitNo As Integer, _
   ByRef visible As Integer _
) As Integer

Parameters
unitNo
Processing unit number to be displayed
Output
visible
Display
0: Window invisible
1: Window visible
Output

Return Value
Returns 0 when the setting information of the text display window is successfully obtained.
Otherwise returns a non-zero value.

Description
Gets information about the text display window setting.

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

       Dim unitNo As Integer
       Dim visible As Integer

       ' Gets information about the text display window setting
       GetTextWindow(unitNo, visible)

   End Sub