TheSwamp

Code Red => .NET => Topic started by: daboho on October 13, 2021, 05:49:01 PM

Title: problem with ed.getKeyword in autocad 2019 and in autocad 2017
Post by: daboho on October 13, 2021, 05:49:01 PM
in autocad 2017 prompt keyword option can show in monitor and in editor
but in autocad 2019 only show in editor command and dont show in monitor
how to in autocad 2019 promptKeyswordOption run like in autocad 2017 (also able in monitor)
this picture is same as code
Title: Re: problem with ed.getKeyword in autocad 2019 and in autocad 2017
Post by: n.yuan on October 14, 2021, 09:09:06 AM
It is called "Dynamic Input", controlled by system variable "DYNMODE". Dynamic input has been there for quite a while (I think it was way before Acad2017), so, it is not an issue with your Acad2017 and Acad2019, nor it has anything to do with .NET API (Editor. GetKeyword()/GetXXXxx()). You can either change the value of "DYNMODE", or you can do it on AutoCAD UI easily
(http://)
Title: Re: problem with ed.getKeyword in autocad 2019 and in autocad 2017
Post by: daboho on October 15, 2021, 03:55:58 PM
thank you very match