IntelliCAD 11.1 Object Library | |
AddPolyline Method | |
See Also |
- Vertices
- A series of Point objects specifying coordinate locations for each polyline vertex.
PaperSpace Collection : AddPolyline Method |
Description
Syntax
Parameters
- Vertices
- A series of Point objects specifying coordinate locations for each polyline vertex.
Example
Private Sub Polyline_Example()
' This example adds a polyline to the drawing using the AddPolyline method.
Dim myDoc As IntelliCAD.Document
Dim myPline As Polyline
Dim myPoints As points
Dim pt As Point
Set myDoc = ActiveDocument
Set myPoints = Library.CreatePoints
Set pt = Library.CreatePoint(1, 1, 0)
myPoints.Add
myPoints(myPoints.Count - 1).x = pt.x
myPoints(myPoints.Count - 1).y = pt.y
myPoints(myPoints.Count - 1).z = pt.z
Set pt = Library.CreatePoint(3, 3, 0)
myPoints.Add
myPoints(myPoints.Count - 1).x = pt.x
myPoints(myPoints.Count - 1).y = pt.y
myPoints(myPoints.Count - 1).z = pt.z
Set myPline = ThisDocument.ModelSpace.AddPolyline(myPoints)
myPline.Update
ThisDocument.Application.ZoomExtents
End Sub