修改多重引线块中属性的方法,包含几个子函数,需要的朋友可参考。等空了录个gif演示下。
 - ;;其余功能子函数
- (defun zr-dqwd ( / )
- (vla-get-ActiveDocument (vlax-get-acad-object)))
- (defun strcase= (a b / )
- (if (and (= (type a) 'STR) (= (type b) 'STR))
- (= (strcase a) (strcase b))
- (= a b)
- )
- )
- (defun strcase-wcmatch (str pat / )
- (wcmatch (strcase str) (strcase pat))
- )
|