明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1558|回复: 5

求助:关于文字对齐的问题

[复制链接]
发表于 2004-12-9 17:14:00 | 显示全部楼层 |阅读模式
请高手帮忙看看我下面的代码: On Error Resume Next
Dim sstext As AcadSelectionSet
Dim FilterType(0) As Integer
Dim FilterData(0) As Variant
Dim nInsertionPoint(2)

ThisDrawing.Utility.Prompt ("选择你要求排序的文本:")
Set sstext = ThisDrawing.SelectionSets.Add("SSS1")
If ERR Then
ERR.Clear
Set sstext = ThisDrawing.SelectionSets.Item("SSS1")
End If
sstext.Clear
FilterType(0) = 0
FilterData(0) = "TEXT" sstext.SelectOnScreen FilterType, FilterData

nInsertionPoint(0) = 90: nInsertionPoint(1) = 30: nInsertionPoint(2) = 0

Dim entry As AcadEntity
For Each entry In sstext
entry.Alignment = acAlignmentCenter
entry.TextAlignmentPoint = nInsertionPoint
entry.Update
Next entry 怎么不能改变文本的对象点?谢谢了。
发表于 2004-12-9 20:49:00 | 显示全部楼层
Dim nInsertionPoint(2) as double
发表于 2004-12-9 20:52:00 | 显示全部楼层
改这一句:
Dim nInsertionPoint(2) As Double
发表于 2004-12-9 21:27:00 | 显示全部楼层
有意思,这个错误我也有过阿,当时花了好长时间才找到出错的原因。
发表于 2004-12-9 21:32:00 | 显示全部楼层
做一个子程解决这个问题,调用格式:pnt=createpoint(90,30,0) Public Function CreatePoint(Optional ByVal X As Double = 0#, Optional ByVal Y As Double = 0#, Optional ByVal Z As Double = 0#)

Dim pnt(2) As Double
pnt(0) = X: pnt(1) = Y: pnt(2) = Z

CreatePoint = pnt

End Function
 楼主| 发表于 2004-12-10 08:19:00 | 显示全部楼层
谢谢斑竹,确实是这个问题。


解决了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 22:23 , Processed in 0.179104 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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