GraphicsCache.DrawLine(Single, Single, Single, Single, Color, Int32) Method
Draws a line connecting two PointF structures.
Namespace: DevExpress.Utils.Drawing
Assembly: DevExpress.Utils.v26.1.dll
Declaration
public void DrawLine(
float x1,
float y1,
float x2,
float y2,
Color color,
int thickness
)
Parameters
| Name | Type | Description |
|---|---|---|
| x1 | Single | The x-coordinate of the PointF structure that represents the first point to connect. |
| y1 | Single | The y-coordinate of the PointF structure that represents the first point to connect. |
| x2 | Single | The x-coordinate of the PointF structure that represents the second point to connect. |
| y2 | Single | The y-coordinate of the PointF structure that represents the second point to connect. |
| color | Color | A Color structure that indicates the color of the Pen used to draw the line. |
| thickness | Int32 | A value indicating the width of the Pen used to draw the line. |
See Also