API Documentation > CorelDRAW > 2025-v26 > SubPath > IVGSubPath
SubPath.Nodes property
Gets the collection of nodes within the subpath
Syntax:
Property Get Nodes() As Nodes
Remarks:
The Nodes property returns a Nodes collection that contains all the nodes on a subpath.
Examples:
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