draw_spline method

draw_spline(pin_x, pin_y, width, height, points) {#float-float-float-float-aspose.pydrawing.PointF[]}

The process of drawing spline.

Returns

The unique ID of the shape within shapes collection on the specified page.

def draw_spline(self, pin_x, pin_y, width, height, points):
    ...
Parameter Type Description
pin_x float Specifies the x-coordinate of the shape’s pin (center of rotation) in relation to the page.
pin_y float Specifies the y-coordinate of the shape’s pin (center of rotation) in relation to the page.
width float Specifies the width of the shape
height float Specifies the height of the shape
points aspose.pydrawing.PointF[] Specifies the points of the spline

See Also