GetAcadState Example |
Using Programming Languages other than VBA
Sub Example_GetAcadState() ' This example gets the acadState object and checks to see if ' 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
Comments? |