handled property

bool handled

Gets or sets whether an InputEvent that applies to a GraphObject and bubbles up the chain of containing Panels is stopped from continuing up the chain.

Some event handlers may set this to true to avoid getting any behavior from the containing Panels. The default value is false.

Implementation

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

Implementation

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