求助!请高手帮忙看看这个要怎么改才能用
Sub Ch4_AddLightWeightPolyline()Dim plineObj As AcadLWPolyline
Dim points(0 To 5) As Double
' 定义二维多段线的点
points(0) = "f:\[数据.xls]XY坐标!$B$11\": points(1) ="f:\[数据.xls]XY坐标!$C$11\"
points(2) = "f:\[数据.xls]XY坐标!$B$12\": points(3) = "f:\[数据.xls]XY坐标!$C$12\"
points(4) = "f:\[数据.xls]XY坐标!$B$13\": points(5) = "f:\[数据.xls]XY坐标!$C$13\"
' 在模型空间中创建一个优化多段线对象
Set plineObj = ThisDrawing.ModelSpace.AddLightWeightPolyline(points)
ThisDrawing.Application.ZoomAll
End Sub
我想引用《数据.xls》中的数据来画多段线
没人能帮忙指点一下吗??? 还不会做吗?你没读出数据,只不是用了字符串呢,当然不行了,要引用excel对象取得相关数值才可以呀
页:
[1]