Description
Property type
Syntax
| Visual Basic |
|---|
Public Property Length As Double |
Example
' This example adds a polyline to the drawing using the AddPolyline method.
' It then obtains the Length and Closed properties of the polyline.
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(5, 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)
MsgBox "The length of the new polyline is: " & myPline.Length
MsgBox "The Closed property is: " & myPline.Closed
myPline.Update
ThisDocument.Application.ZoomExtents
End Sub
en
italiano
čeština
Deutsch
français
hrvatski
magyar
polski
српски
русский
中文
中文
한국어
español