height_scale property

height_scale property

Gets and sets the height scale,in unit of percent of the original picture height. If the shape is not picture ,the HeightScale property only returns 100;

Example


if shape.height_scale == 3:
    shape.height_scale = 1

Definition:

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

See Also