本帖最后由 shh_188 于 2016-9-14 15:20 编辑
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;;获取区域覆盖(Wipeout)对象的边框开关状态
- ;;Wipeout边框打开,返回1
- ;;Wipeout边框关闭,返回0
- ;;当前文件中不存在Wipeout对象,返回2
- (defun GetWipeoutFrame (/ WipeoutVars return)
- (setq WipeoutVars (dictsearch (namedobjdict) "ACAD_WIPEOUT_VARS"))
- (if (NOT WipeoutVars)
- (setq return 2);;当前文件中不存在Wipeout对象,返回2
- (if (= (cdr (assoc 70 WipeoutVars)) 1)
- (setq return 1);;Wipeout边框打开,返回1
- (setq return 0);;Wipeout边框关闭,返回0
- )
- )
- return
- )
)
|