- 积分
- 6961
- 明经币
- 个
- 注册时间
- 2004-4-9
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2004-6-12 18:55:00
|
显示全部楼层
用以下代码试试:
Sub Textstyle() Dim Txtstyle As AcadTextStyle Dim Text As AcadText Dim Txt(2) As Double Set Txtstyle = ThisDrawing.TextStyles.Add("黑体") ThisDrawing.ActiveTextStyle = Txtstyle Txtstyle.fontFile = "c:\windows\fonts\simhei.ttf" Txtstyle.Width = 1.2 Txt(0) = 0: Txt(1) = 0: Txt(2) = 0 '在 (0 0 0) 处写入"明经通道示例";高度为5,宽度比为1:1.2 Set Text = ThisDrawing.ModelSpace.AddText("明经通道示例", Txt, 5) End Sub
对不起!在发贴子时,汉字未能正常显示,再发一次 |
|