vba中怎样实现AUTOCAD的BASE命令?
我已经用VBA绘制出来了图形,我想在图上设置一个捕捉基点,用什么方法写程序?AUTOCAD中命令执行方式如下:
<FONT color=#e66b1a>命令: base<BR>输入基点 <32.0000,70.0000,85.0000>: 96,78,0</FONT>
<FONT color=#e66b1a></FONT>
<FONT color=#e66b1a>谢谢!!!!!!!!!!</FONT> Dim base(2) as Double
base(0)=96:base(1)=78
SetVariable "INSBASE" base 谢谢了.但是,运行会出错啊.错误提示:没有语句结束. SetVariable "INSBASE", base
页:
[1]