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.RenderingAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax public abstract void CubicBezierTo(
PointF pt1,
PointF pt2,
PointF pt3
)
Public MustOverride Sub CubicBezierTo (
pt1 As PointF,
pt2 As PointF,
pt3 As PointF
)
public:
virtual void CubicBezierTo(
PointF pt1,
PointF pt2,
PointF pt3
) abstract
abstract CubicBezierTo :
pt1 : PointF *
pt2 : PointF *
pt3 : PointF -> unit
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