Search
IGraphicsPath.AddLine Method (Double, Double, Double, Double)
See Also
 





Appends a line segment to the current figure.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void AddLine (
    double x1,
    double y1,
    double x2,
    double y2
)

Visual Basic  Copy Code

Sub AddLine( _
    x1 As Double, _
    y1 As Double, _
    x2 As Double, _
    y2 As Double _
)

 Parameters

x1

The x-coordinate of the starting point of the line.

y1

The y-coordinate of the starting point of the line.

x2

The x-coordinate of the endpoint of the line.

y2

The y-coordinate of the endpoint of the line.

 See Also