height property

height property

Represents the height of shape, in unit of pixel.

Example


if shape.height == 3:
    shape.height = 1

Definition:

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

See Also