Adds a node to the range
Syntax:
Sub Add(ByVal Node As Node)
Parameters:
Name Type Description
Node
Remarks:
The Add method places a specified node in a node range. Adding a node to a node range doesn't make that node active within a curve - it merely includes the node in future references to that node range.
Examples:
The following VBA example creates a node range containing the first, second, and third nodes of the curve. A fifth node is added to the curve, and then all four nodes are deleted from the curve.
Sub Test()
Dim nr As NodeRange
Set nr = ActiveShape.Curve.Nodes.Range(1, 2, 3)
nr.Add ActiveShape.Curve.Nodes(5)
nr.Delete 
End Sub