line_to method

line_to

Appends a straight line segment from the current point to the point (pt). The new current point is pt.

def line_to(self, pt):
    ...
ParameterTypeDescription
ptaspose.pydrawing.PointFPoint of where to create the line to.

See Also