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
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
© 2024 OneMinuteCode. All rights reserved.