In This Topic
Adds the "smooth curveto" command to the path.
Syntax
'Declaration
Public Sub AddSmoothCurveTo( _
ByVal As System.Boolean, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single _
)
public void AddSmoothCurveTo(
System.bool ,
System.float ,
System.float ,
System.float ,
System.float
)
Parameters
- relative
- Indicates whether the command uses absolute (false) or relative (true) coordinates.
- x2
- The X-coordinate of the second control point.
- y2
- The Y-coordinate of the second control point.
- x
- The X-coordinate of the destination point.
- y
- The Y-coordinate of the destination point.
See Also