永发信息网

关于用VBA在CAD中在窗口中获取点绘制多段线

答案:1  悬赏:30  手机版
解决时间 2021-03-05 21:49
  • 提问者网友:不爱我么
  • 2021-03-05 18:57
关于用VBA在CAD中在窗口中获取点绘制多段线
最佳答案
  • 五星知识达人网友:纵马山川剑自提
  • 2021-03-05 19:12
Sub Example_AddLightWeightPolyline()
' This example creates a lightweight polyline in model space.

Dim plineObj As AcadLWPolyline
Dim points(0 To 9) As Double

' Define the 2D polyline points
points(0) = 1: points(1) = 1
points(2) = 1: points(3) = 2
points(4) = 2: points(5) = 2
points(6) = 3: points(7) = 2
points(8) = 4: points(9) = 4

' Create a lightweight Polyline object in model space
Set plineObj = ThisDrawing.ModelSpace.AddLightWeightPolyline(points)
ZoomAll

End Sub
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯