開始済み

これは、エミュレーター・ウィンドウが開始されたかどうかを示します。ウィンドウがオープンしている場合、値は True です。 その他の場合は False です。Started は、Boolean データ型で読み取り専用です。以下の例は、このプロパティーを示しています。

DIM  Hand as Long
DIM  Obj as Object
 
Set Obj = CreateObject("ZIEWinZIEWin.autECLWinMetrics")
 
' Initialize the connection
Obj.SetConnectionByName("A")
 
' This code segment checks to see if A is started.
' The results are sent to a text box called Result.
If Obj.Started = False Then
  Result.Text = "No"
Else
  Result.Text = "Yes"
End If