明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2000|回复: 9

用Autoisp/Vlisp能改变CAD字体?

[复制链接]
发表于 2004-2-1 16:08:00 | 显示全部楼层 |阅读模式
用Autoisp/Vlisp能改变CAD字体?
发表于 2004-2-1 17:08:00 | 显示全部楼层
不知你要怎么改变,当然是可以的。
发表于 2004-2-2 04:32:00 | 显示全部楼层
REFER TO: (defun changefont ( / styles doc)
(setq doc (vla-get-activedocument (vlax-get-acad-object)))
(setq styles (vla-get-TextStyles doc))
(vlax-for st styles
(vla-put-FontFile st "simfang.ttf")
)
(vla-regen doc acActiveViewport)
(princ)
)
发表于 2004-2-2 16:11:00 | 显示全部楼层
我还没搞懂AUTOLISP与VLISP的关系!!请那位大侠讲两句!


vla-这类函数是不是就是VLISP的函数?我看有些函数功能好象与非vla函数有重复,用那个比较好!?
发表于 2004-2-2 16:36:00 | 显示全部楼层
VLISP函數較多,它以ActiveX物件對象為主,VLISP包括所有AUTOLISP函數,當然用起來比較方便,只是VLISP在R2000+才內含於autocad,R14只能用外掛的VLISP或純Autolisp函數
 楼主| 发表于 2004-2-6 14:57:00 | 显示全部楼层
每次使用大字体都要设置:格式=>文字样式=>选择“使用大字体”=>kt64.shx


能不能用Autoisp/Vlisp直接使用kt64.shx字体?
发表于 2004-2-6 17:51:00 | 显示全部楼层
3楼不已经给出了吗?


看看象字体的地方改成你需要的字体就可以了
 楼主| 发表于 2004-2-14 09:36:00 | 显示全部楼层
(defun changefont ( / styles doc)
(setq doc (vla-get-activedocument (vlax-get-acad-object)))
(setq styles (vla-get-TextStyles doc))
(vlax-for st styles
(vla-put-FontFile st "txt.shx")
)
(vla-regen doc acActiveViewport)
(princ)
) 可以改变字体谢谢! 但是我还想加大字体:KS64K.shx (defun changefont ( / styles doc)
(setq doc (vla-get-activedocument (vlax-get-acad-object)))
(setq styles (vla-get-TextStyles doc))
(vlax-for st styles
(vla-put-FontFile st "txt.shx,ks64k.shx")
)
(vla-regen doc acActiveViewport)
(princ)
)
发表于 2004-2-14 13:16:00 | 显示全部楼层
  1. (defun c:zt (/ styles doc)
  2.    (setq doc (vla-get-activedocument (vlax-get-acad-object)))
  3.    (setq styles (vla-get-TextStyles doc))
  4.    (vlax-for st styles
  5.        (vla-put-FontFile st "gbenor.shx")
  6.        (vla-put-BigFontFile st "hzfs.shx")
  7.    )
  8.    (vla-regen doc acActiveViewport)
  9.    (princ)
  10. )
 楼主| 发表于 2004-2-14 15:38:00 | 显示全部楼层
谢谢你游侠 !
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-27 14:48 , Processed in 0.178602 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表