filled property

Shape.filled property

Determines whether the closed path of the shape will be filled.

@property
def filled(self) -> bool:
    ...

@filled.setter
def filled(self, value: bool):
    ...

Remarks

This is a shortcut to the Fill.visible property.

The default value is True.

See Also