left property

left property

Represents the horizontal offset of shape from its left column, in unit of pixels.

Example


if shape.left == 3:
    shape.left = 1

Definition:

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

See Also