Description:

Draws a set of lines with a given color and thickness. If you want the fastest possible set of lines to be drawn, pass a Line[] for lines.

Syntax:
public void DrawLines(
IEnumerable<Line> lines,
Color color,
int thickness
)
Parameters:
  • lines
  • Type: System.Collections.Generic.IEnumerable<Line>
  • Lines to draw.
  • color
  • Type: System.Drawing.Color
  • Color to draw with.
  • thickness
  • Type: int
  • Thickness (in pixels) of lines.
Returns:
Type: void
Available since:
5.0

Description:

Draws a set of lines with a given color and thickness. If you want the fastest possible set of lines to be drawn, pass a Line[] for lines.

Syntax:
public void DrawLines(
IEnumerable<Line> lines,
Color color
)
Parameters:
  • lines
  • Type: System.Collections.Generic.IEnumerable<Line>
  • Lines to draw.
  • color
  • Type: System.Drawing.Color
  • Color to draw with.
Returns:
Type: void
Available since:
5.0

Description:
Syntax:
public void DrawLines(
Line[] lines,
DisplayPen pen
)
Returns:
Type: void
Available since:
8.0

Nothing found