I want to know if IJCAD is idle.

Asked 1 years ago, Updated 1 years ago, 99 views

I'm using IJCAD 2019 and VB.NET.

I am about to send SendCommand when the operation on the screen is finished.I tried using GetGcadState to determine if the operation is complete, but the code below is always False.

 if IJCAD.GetGcadState.Equals(True) Then

If GetGcadState can tell you how to use it, and if you can't tell me how to use it, I'd like you to tell me another way.Thank you for your cooperation

ijcad vb.net

2022-09-30 21:47

1 Answers

As far as the help is concerned, wouldn't COM use GCadState.IsQuiescent to determine it?IsQuiescent?
If IJCAD is a GcadApplication object, I think the following would be true.

 if IJCAD.GetGcadState.IsQuiescent Then


2022-09-30 21:47

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.