Previous Document Next Document

Object Model Reference : Classes : S : SubPath : Properties : SubPath.Nodes


SubPath.Nodes

Property Nodes As Nodes

Description

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.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.