已开始
此项会指示是否已启动仿真器窗口。如果窗口已打开,则值为 True;否则为 False。Started 是布尔数据类型且为只读。下列示例展示了此属性。
DIM Hand as Long
DIM Obj as Object
Set Obj = CreateObject("ZIEWin.autECLOIA")
' 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