Description

Adds a Bézier curve from the previous point.

Syntax

Public Sub AddCurveFrom( _
   ByVal X As Single, _
   ByVal Y As Single, _
   ByVal SourceControlPointX As Single, _
   ByVal SourceControlPointY As Single _
) 

Parameters

X

X Coordinate of the destination.

Y

Y Coordinate of the destination.

SourceControlPointX

X Coordinate of the sources control point.

SourceControlPointY

Y Coordinate of the sources control point.

Remarks

This Path, when added to a Path, is used to create a Bézier curve from the CurveTo SubPath's specified location back to the last point in the Path.

See Also

Path Object