Draws a line from between two points.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public override void DrawLine(
	int x0,
	int y0,
	int x1,
	int y1
)
Visual Basic (Declaration)
Public Overrides Sub DrawLine ( _
	x0 As Integer, _
	y0 As Integer, _
	x1 As Integer, _
	y1 As Integer _
)
Visual C++
public:
virtual void DrawLine(
	int x0, 
	int y0, 
	int x1, 
	int y1
) override

Parameters

x0
Type: System..::.Int32
An int which specifies the x-coordinate of the line origin, (x0,y0).
y0
Type: System..::.Int32
An int which specifies the y-coordinate of the line origin, (x0,y0).
x1
Type: System..::.Int32
An int which specifies the x-coordinate of the line destination, (x1,y1).
y1
Type: System..::.Int32
An int which specifies the y-coordinate of the line destination, (x1,y1).

See Also