IsQuiescent 示例 |
使用 VBA 以外的其它编程语言
Sub Example_IsQuiescent() ' This example gets the acadState object and checks to see whether ' AutoCAD is in a quiescent state. Dim State As AcadState Set State = GetAcadState If State.IsQuiescent Then MsgBox "AutoCAD is quiescent." Else MsgBox "AutoCAD is not quiescent." End If End Sub