Overload | Description |
---|---|
DrawLine(Single,Single,Single,Single,Color,Single,DashStyle) | Draws a line between two points, using a specified line color, width and style.
If the value of lineStyle parameter is not DashStyle.Solid, the line is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawLine(Single,Single,Single,Single,Color,Single,Single[]) | Draws a line between two points, using the specified line color, width and dash pattern.
If the dashPattern array contains two or more items, the line is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawLine(PointF,PointF,Color,Single,DashStyle) | Draws a line between two points, using a specified line color, width and style.
If the value of lineStyle parameter is not DashStyle.Solid, the line is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawLine(PointF,PointF,Color,Single,Single[]) | Draws a line between two points, using the specified line color, width and dash pattern.
If the dashPattern array contains two or more items, the line is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawLine(PointF,PointF,Pen) | Draws a line between two points, using the specified pen. |
DrawLine(Single,Single,Single,Single,Pen) | Draws a line between two points, using the specified pen. |