Edit

Share via


Pcd8544.DrawLine Method

Definition

Overloads

DrawLine(Point, Point, Boolean)

Draw a line

DrawLine(Point, Point, Boolean)

Draw a line

DrawLine(Int32, Int32, Int32, Int32, Boolean)

Draw a line

DrawLine(Point, Point, Boolean)

Draw a line

public void DrawLine (SixLabors.ImageSharp.Point p1, SixLabors.ImageSharp.Point p2, bool isOn);
member this.DrawLine : SixLabors.ImageSharp.Point * SixLabors.ImageSharp.Point * bool -> unit
Public Sub DrawLine (p1 As Point, p2 As Point, isOn As Boolean)

Parameters

p1
SixLabors.ImageSharp.Point

First point coordinate.

p2
SixLabors.ImageSharp.Point

Second point coordinate.

isOn
Boolean

True if the line has pixels on, false for off.

Applies to

DrawLine(Point, Point, Boolean)

Draw a line

public void DrawLine (System.Drawing.Point p1, System.Drawing.Point p2, bool isOn);
member this.DrawLine : System.Drawing.Point * System.Drawing.Point * bool -> unit
Public Sub DrawLine (p1 As Point, p2 As Point, isOn As Boolean)

Parameters

p1
Point

First point coordinate.

p2
Point

Second point coordinate.

isOn
Boolean

True if the line has pixels on, false for off.

Applies to

DrawLine(Int32, Int32, Int32, Int32, Boolean)

Draw a line

public void DrawLine (int x1, int y1, int x2, int y2, bool isOn);
member this.DrawLine : int * int * int * int * bool -> unit
Public Sub DrawLine (x1 As Integer, y1 As Integer, x2 As Integer, y2 As Integer, isOn As Boolean)

Parameters

x1
Int32

The first point X coordinate.

y1
Int32

The first point Y coordinate.

x2
Int32

The second point X coordinate.

y2
Int32

The second point Y coordinate.

isOn
Boolean

True if the line has pixels on, false for off.

Applies to