LineTo
LineTo(PointF)
Adds line to the end of the path
public void LineTo(PointF point)
Parameter |
Type |
Description |
point |
PointF |
End point of the line |
See Also
LineTo(float, float)
Adds line to the end of the path
public void LineTo(float x, float y)
Parameter |
Type |
Description |
x |
Single |
X coordinate of the end point of the line |
y |
Single |
Y coordinate of the end point of the line |
See Also
LineTo(PointF, uint)
Adds line to the specified place of the path
public void LineTo(PointF point, uint index)
Parameter |
Type |
Description |
point |
PointF |
End point |
index |
UInt32 |
Index of segment in PathData |
Exceptions
exception |
condition |
ArgumentOutOfRangeException |
Segment index is out of PathData range |
See Also
LineTo(float, float, uint)
Adds line to the specified place of the path
public void LineTo(float x, float y, uint index)
Parameter |
Type |
Description |
x |
Single |
X coordinate of the point |
y |
Single |
Y coordinate of the point |
index |
UInt32 |
Index of segment in PathData |
Exceptions
exception |
condition |
ArgumentOutOfRangeException |
Segment index is out of PathData range |
See Also