bubbles property

bubbles property

Used to indicate whether or not an event is a bubbling event. If the event can bubble the value is true, else the value is false.

Definition:

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

See Also