[]
Creates a line segment between the current point and the specified end point and adds it to the figure.
public void AddLine(PointF endPoint)
| Type | Name | Description |
|---|---|---|
| PointF | endPoint | The end point of the line to draw. |
Creates a line segment between the current point and the specified end point and adds it to the figure.
public void AddLine(float endPointX, float endPointY)
| Type | Name | Description |
|---|---|---|
| float | endPointX | The x-coordinate of the end point of the line to draw. |
| float | endPointY | The y-coordinate of the end point of the line to draw. |