Object Model Reference : Classes : N : Node : Properties : Node.IsEnding |
Property IsEnding As Boolean
Member of Node
The IsEnding property returns True if a node is the first or last node of an open subpath.
The IsEnding property returns a read-only value.
The following VBA example marks, with a small circle, each ending node in a curve.
Sub Test() |
Dim n As Node |
For Each n In ActiveShape.Curve.Nodes |
If n.IsEnding Then |
ActiveLayer.CreateEllipse2 n.PositionX, n.PositionY, 0.1 |
End If |
Next n |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.