public Path AddBezier(
PointF p1,
PointF p2,
PointF p3,
PointF p4
)
Public Function AddBezier (
p1 As PointF,
p2 As PointF,
p3 As PointF,
p4 As PointF
) As Path
public:
Path^ AddBezier(
PointF p1,
PointF p2,
PointF p3,
PointF p4
)
member AddBezier :
p1 : PointF *
p2 : PointF *
p3 : PointF *
p4 : PointF -> Path
If the current figure is not empty or closed, the first point of the added curve will be connected to the last point of the figure.
The parameters are not validated here but in the moment of drawing the coordinates of the possibly transformed path points must fall into the bounds of an int value; otherwise, an OverflowException will be thrown.