Previous Document Next Document

Object Model Reference : Classes : N : Nodes : Methods : Nodes.All


Nodes.All

Function All() As NodeRange

Description

Member of Nodes

The All method returns a node range that contains all nodes in a Nodes collection.

VBA example

The following VBA 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 2013 Corel Corporation. All rights reserved.