is_decorative property

is_decorative property

Indicates whether the object is decorative.

Example


if notshape.is_decorative:
    shape.is_decorative = True

Definition:

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

See Also