作動可能

これは、エミュレーター・ウィンドウが 開始されていて、API 使用可能で、そして接続されているかどうかを示します。このプロパティーは、3 つのすべてのプロパティーを確認します。エミュレーターが準備できている場合には、値は True です。 その他の場合には、False です。Ready は、Boolean データ型で読み取り専用です。以下の例は、このプロパティーを示しています。

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