明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1413|回复: 3

[求助]想作一个子函数,用于取得屏幕上选取的文字的值和3D坐标

[复制链接]
发表于 2006-6-24 04:51:00 | 显示全部楼层 |阅读模式

怎么老出现 Type mismatch 问题?本人VB较弱,是不是Vb函数只能返回单值呀?

Public Function Get_Elev_BasePnt(ByVal Obj As AcadText) As Double

           Get_Elev_BasePnt(0) = obj.TextString
            Get_Elev_BasePnt(1) = Obj.InsertionPoint(0)
            Get_Elev_BasePnt(2) = Obj.InsertionPoint(1)
            Get_Elev_BasePnt(3) = Obj.InsertionPoint(2)

end fuction

发表于 2006-6-24 08:19:00 | 显示全部楼层
Function Get_Elev_BasePnt(ByVal Obj As AcadText) As Variant
Dim curValue(3) As Double
curValue(0) = Obj.TextString
curValue(1) = Obj.InsertionPoint(0)
curValue(2) = Obj.InsertionPoint(1)
curValue(3) = Obj.InsertionPoint(2)
Get_Elev_BasePnt = curValue
End Function
发表于 2006-6-24 19:04:00 | 显示全部楼层
Dim curValue(3)
发表于 2006-6-26 08:05:00 | 显示全部楼层
顶顶,笔误。。。。^_^
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 02:14 , Processed in 0.145208 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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