[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Draws a Bezier spline [Property] Graphics=Sets the Graphics to draw a Bezier spline. ARG(Graphics)|20|(empty)|Graphics Pen=Sets the Pen that determines the color, width, and style of the Bezier spline. ARG(Pen)|20|(empty)|Pen X1=Sets the x-coordinate of the starting point of the curve. ARG(float)|2| Y1=Sets the y-coordinate of the starting point of the curve. ARG(float)|2| X2=Sets the x-coordinate of the first control point of the curve. ARG(float)|2| Y2=Sets the y-coordinate of the first control point of the curve. ARG(float)|2| X3=Sets the x-coordinate of the second control point of the curve. ARG(float)|2| Y3=Sets the y-coordinate of the second control point of the curve. ARG(float)|2| X4=Sets the x-coordinate of the ending point of the curve. ARG(float)|2| Y4=Sets the y-coordinate of the ending point of the curve. ARG(float)|2| [Methods] doDrawBezier=Draws a Bezier spline defined by four Point||PointF structures. ARG(Pen pen, Point||PointF pt1, Point||PointF pt2, Point||PointF pt3, Point||PointF pt4)|1|0 *doDrawBezier2=Draws a Bezier spline defined by four ordered pairs of coordinates that represent points. ARG(Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)|1|0 *doDrawBeziers=Draws a series of Bezier splines from an array of Point||PointF structures. ARG(Pen pen, Point[]||PointF[] points)|1|0 Graphics=Defines the Graphics to draw a Bezier spline. ARG(Graphics)|4|0 Pen=Defines the Pen that determines the color, width, and style of the Bezier spline. ARG(Pen)|4|0 *points=Defines the Array of Point structures that represent the points that determine the curve. The number of points in the array should be a multiple of 3 plus 1, such as 4, 7, or 10. ARG(Point[])|4|13 *pt1=Defines the Point structure that represents the starting point of the curve. ARG(Point)|4|0 *pt2=Defines the Point structure that represents the first control point for the curve. ARG(Point)|4|0 *pt3=Defines the Point structure that represents the second control point for the curve. ARG(Point)|4|0 *pt4=Defines the Point structure that represents the ending point of the curve. ARG(Point)|4|0 *x1=Defines the x-coordinate of the starting point of the curve. ARG(float)|4|107 *y1=Defines the y-coordinate of the starting point of the curve. ARG(float)|4|107 *x2=Defines the x-coordinate of the first control point of the curve. ARG(float)|4|107 *y2=Defines the y-coordinate of the first control point of the curve. ARG(float)|4|107 *x3=Defines the x-coordinate of the second control point of the curve. ARG(float)|4|107 *y3=Defines the y-coordinate of the second control point of the curve. ARG(float)|4|107 *x4=Defines the x-coordinate of the ending point of the curve. ARG(float)|4|107 *y4=Defines the y-coordinate of the ending point of the curve. ARG(float)|4|107