Click or drag to resize

FndRTLGraphics.DrawLine Method (Pen, Single, Single, Single, Single)

Draws a line connecting the two points specified by the coordinate pairs.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public void DrawLine(
	Pen pen,
	float x1,
	float y1,
	float x2,
	float y2
)

Parameters

pen
Type: System.Drawing.Pen
System.Drawing.Pen that determines the color, width, and style of the line.
x1
Type: System.Single
The x-coordinate of the first point.
y1
Type: System.Single
The y-coordinate of the first point.
x2
Type: System.Single
The x-coordinate of the second point.
y2
Type: System.Single
The y-coordinate of the second point.
See Also