DeviceTGraphicContext, TRenderingOptionsCubicBezierTo Method
Appends a cubic Bézier curve to the current path. The curve extends from the current point to the point pt2, using pt1 and pt2 as the Bézier control points. The new current point is pt3.

Namespace: Aspose.Html.Rendering
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
public abstract void CubicBezierTo(
	PointF pt1,
	PointF pt2,
	PointF pt3
)

Parameters

pt1
Type: System.DrawingPointF
Coordinates of first point
pt2
Type: System.DrawingPointF
Coordinates of second point
pt3
Type: System.DrawingPointF
Coordinates of third point

Implements

IDeviceCubicBezierTo(PointF, PointF, PointF)
See Also