LineTo

LineTo(PointF)

Adds line to the end of the path

public void LineTo(PointF point)
ParameterTypeDescription
pointPointFEnd point of the line

See Also


LineTo(float, float)

Adds line to the end of the path

public void LineTo(float x, float y)
ParameterTypeDescription
xSingleX coordinate of the end point of the line
ySingleY 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)
ParameterTypeDescription
pointPointFEnd point
indexUInt32Index of segment in PathData

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment 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)
ParameterTypeDescription
xSingleX coordinate of the point
ySingleY coordinate of the point
indexUInt32Index of segment in PathData

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment index is out of PathData range

See Also