谁给讲解一下autodesk.autocad.runtime.commandflags里各项的意义
www.dimcax.com
谁给讲解一下autodesk.autocad.runtime.commandflags里各项的意义
如题,网上找不到什么介绍,才鸟的书里也说的较少
我也是一直没找到这个的说明,今天看了一下autodesk最新的文档,结果有了,哈哈!下面是那个标志枚举类型的详细资料,共享给大家! members description
actionmacro = 0x8000000 this bit commands that are defined as a result of recording a series of actions with the actionrecorder.
defun = 0x800 this flag can only be set by the visual lisp engine. command can be invoked as a lisp function and can therefore use acedgetargs() to receive arguments from lisp and can use the acedretxxx() functions to return values to lisp.
docexclusivelock = 0x100000 document will be exclusively locked when command is invoked. if this bit is not set, then the document will be share locked when the command is invoked.
docreadlock = 0x80000 document will be read locked when command is invoked. if this bit is not set, then the document will be write locked when the command is invoked.
interruptible = 0x400000 the command may be interrupted when prompting for user input while it is calling any of the acedgetxxx methods.
modal = 0 command cannot be invoked while another command is active.
noactionrecording = 0x4000000 this flag causes the actionrecorder to ignore the associated command
noblockeditor = 0x