is_printable property

is_printable property

Indicates whether the object is printable. If False, this shape will not be printed when printing.

Example


if shape.is_printable:
    shape.is_printable = False

Definition:

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

See Also