right property

right property

Represents the width of the shape’s horizontal offset from its lower right corner column, in unit of pixels.

Example


if shape.right == 3:
    shape.right = 1

Definition:

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

See Also