Object Model Reference : Classes : S : SubPath : Properties : SubPath.Nodes |
Property Nodes As Nodes
Member of SubPath
The Nodes property returns a Nodes collection that contains all the nodes on a subpath.
The Nodes property returns a read-only value.
The following VBA example converts the type of all the nodes on the first subpath to symmetrical.
Sub Test() |
Dim n As Node |
For Each n In ActiveShape.Curve.Subpaths(1).Nodes |
n.Type = cdrSymmetricalNode |
Next n |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.