right属性
right属性
表示形状相对于其下部 right 角列的水平偏移的宽度,以像素为单位。
例子
if shape.right == 3:
shape.right = 1
定义:
@property
def right(self):
...
@right.setter
def right(self, value):
...
表示形状相对于其下部 right 角列的水平偏移的宽度,以像素为单位。
if shape.right == 3:
shape.right = 1
@property
def right(self):
...
@right.setter
def right(self, value):
...