Description

Adds a Bézier curve to the next subpath.

Syntax

Public Sub AddCurveTo( _
   ByVal X As Single, _
   ByVal Y As Single, _
   ByVal DestinationControlPointX As Single, _
   ByVal DestinationControlPointY As Single _
) 

Parameters

X

X Coordinate of the destination.

Y

Y Coordinate of the destination.

DestinationControlPointX

X Coordinate of the destinations control point.

DestinationControlPointY

Y Coordinate of the destinations control point.

Remarks

This class, when added to a Path, is used to create a Bézier curve to the CurveToSubPath's specified location.

See Also

Path Object