width属性

width属性

代表形状的width,以像素为单位。

例子


if shape.width == 3:
    shape.width = 1

定义:

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

也可以看看