Draws a line from between two points.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public override void DrawLine(
int x0,
int y0,
int x1,
int y1
)
Public Overrides Sub DrawLine (
x0 As Integer,
y0 As Integer,
x1 As Integer,
y1 As Integer
)
public:
virtual void DrawLine(
int x0,
int y0,
int x1,
int y1
) override
abstract DrawLine :
x0 : int *
y0 : int *
x1 : int *
y1 : int -> unit
override DrawLine :
x0 : int *
y0 : int *
x1 : int *
y1 : int -> unit
Parameters
- x0
- Type: SystemInt32
An int which specifies the x-coordinate of the line origin,
(x0,y0).
- y0
- Type: SystemInt32
An int which specifies the y-coordinate of the line origin,
(x0,y0).
- x1
- Type: SystemInt32
An int which specifies the x-coordinate of the line
destination, (x1,y1).
- y1
- Type: SystemInt32
An int which specifies the y-coordinate of the line
destination, (x1,y1).
See Also