Previous Document Next Document
Nodes.All

Function All() As NodeRange

Member of Nodes

The All method returns a NodeRange object that contains all of the nodes from the collection.

The following code example applies auto-reduction to all curves on the active page:

Sub Test() 
 Dim s As Shape 
 For Each s In ActivePage.Shapes 
  If s.Type = cdrCurveShape Then 
   s.Curve.Nodes.All.AutoReduce 0.05 
  End If 
 Next s 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.