Previous Document Next Document
Node.PrevSegment

Property PrevSegment As Segment

Member of Node

The PrevSegment property returns the previous segment which is adjacent to the node, or it returns Nothing if no segment exists.

The PrevSegment property returns a read-only value.

The following code example creates an ellipse on the active layer, converts it to curves, and returns the third segment:

Sub Test() 
 Dim s1 As Shape 
 Dim sg As Segment 
 Set s1 = ActiveLayer.CreateEllipse(0, 0, 2, 2) 
 s1.ConvertToCurves 
 Set sg = s1.Curve.Nodes(s1.Curve.Nodes.Count).PrevSegment 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.