PointsToCurve

 

The PointsToCurve method converts the selected points into curves.

 

Syntax

object.PointsToCurve

 

Example

    'PointsToCurve

    'Create two points on the layer and assign them to the variables "Point1" and "Point2"

    Set Point1 = Plot.Layers.ActiveLayer.Shapes.AddPoint(3,1)

    Set Point2 = Plot.Layers.ActiveLayer.Shapes.AddPoint(7,7)

 

    'Select the points created

    Point1.Select

    Point2.Select

 

    'Change the selected points to a polyline

    Selection.PointsToCurve

 

Used by: Selection collection