[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Draws a line [Property] Graphics=Sets the Graphics to draw a line. ARG(Graphics)|20|(empty)|Graphics Pen=Sets the Pen that determines the color, width, and style of the line. ARG(Pen)|20|(empty)|Pen Points=Sets an array of Point||PointF structures that represent the points to connect. ARG(Point[]||PointF[])|5| X1=Sets the x-coordinate of the starting point of the curve. ARG(int||float)|2| Y1=Sets the y-coordinate of the starting point of the curve. ARG(int||float)|2| X2=Sets the x-coordinate of the finish control point of the curve. ARG(int||float)|2| Y2=Sets the y-coordinate of the finish control point of the curve. ARG(int||float)|2| [Methods] doDrawLine=Draws a line connecting the two points specified by the coordinate pairs. ARG(Pen pen, int x1, int y1, int x2, int y2)|1|0 *doDrawLine2=Draws a line connecting two Point||PointF structures. ARG(Pen pen, Point||PointF pt1, Point||PointF pt2)|1|0 *doDrawLine3=Draws a line connecting the two points specified by the coordinate pairs. ARG(Pen pen, float x1, float y1, float x2, float y2)|1|0 *doDrawLines=Draws a series of line segments that connect an array of Point structures. ARG(Pen pen, Point[] points)|1|0 *doDrawLines2=Draws a series of line segments that connect an array of PointF structures. ARG(Pen pen, PointF[] points)|1|0 Graphics=Defines the Graphics to draw a line. ARG(Graphics)|4|0 Pen=Defines the Pen that determines the color, width, and style of the line. ARG(Pen)|4|0 *pt1=Defines the Point||PointF structure that represents the starting point of the curve. ARG(Point||PointF)|4|0 *pt2=Defines the Point||PointF structure that represents the finish control point for the curve. ARG(Point||PointF)|4|0 *x1=Defines the x-coordinate of the starting point of the curve. ARG(int||float)|4|0 *y1=Defines the y-coordinate of the starting point of the curve. ARG(int||float)|4|0 *x2=Defines the x-coordinate of the finish control point of the curve. ARG(int||float)|4|0 *y2=Defines the y-coordinate of the finish control point of the curve. ARG(int||float)|4|0 *points=Defines an array of Point||PointF structures that represent the points to connect. ARG(Point[]||PointF[])|4|13