height property

height property

Is a positive integer reflecting the height HTML attribute of the canvas element interpreted in CSS pixels. When the attribute is not specified, or if it is set to an invalid value, like a negative, the default value of 150 is used.

Definition:

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

See Also