width property

width property

Represents the width of shape, in unit of pixels.

Example


if shape.width == 3:
    shape.width = 1

Definition:

@property
def width(self):
    ...
@width.setter
def width(self, value):
    ...

See Also