bubbles property

bool bubbles

Gets or sets whether the underlying #event is prevented from bubbling up the hierarchy of HTML elements outside of the Diagram and whether any default action is canceled. Setting this is uncommon, but may be needed in some CommandHandler overrides in order to pass along events, such as keystrokes, to parent elements of the Diagram.

Some event handlers may set this to true if the event should continue beyond the diagram's DIV and result in any default behaviors by the user-agent. The default value is false.

Implementation

_i2.bool get bubbles => _i4.getProperty(
      this,
      'bubbles',
    );
void bubbles=(bool value)

Implementation

set bubbles(_i2.bool value) {
  _i4.setProperty(
    this,
    'bubbles',
    value,
  );
}