 - ;; 改属性快字高 需要e派工具箱(XCAD)的支持
- (defun c:test1732 ()
- (xyp-Start)
- (setq th (UREAL 7 "" "字高" th))
- (setq i -1)
- (if (setq ss (ssget '((0 . "insert") (66 . 1))))
- (while (setq s1 (ssname ss (setq i (1+ i))))
- (setq lst (xyp-Att2list s1)
- lst (mapcar 'car lst)
- )
- (mapcar '(lambda (x) (xyp-put "height" x th)) lst)
- )
- )
- (xyp-End)
- )
|