draw_rectangle method

draw_rectangle(pin_x, pin_y, width, height)

The process of drawing rectangle.

Returns

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

def draw_rectangle(self, pin_x, pin_y, width, height):
    ...
ParameterTypeDescription
pin_xfloatSpecifies the x-coordinate of the shape’s pin (center of rotation) in relation to the page.
pin_yfloatSpecifies the y-coordinate of the shape’s pin (center of rotation) in relation to the page.
widthfloatSpecifies the width of the shape
heightfloatSpecifies the height of the shape

See Also