handleChanged method

void handleChanged(
  1. ChangedEvent e
)

Maybe record a ChangedEvent in the #currentTransaction. This calls #skipsEvent to see if this should ignore the change. If #skipsEvent returns false, this creates a copy of the ChangedEvent and adds it to the #currentTransaction. If there is no #currentTransaction, this first creates and remembers it.

This method always ignores all changes while performing an #undo or #redo. This method is also a no-op if #isEnabled is false. @param {ChangedEvent} e a ChangedEvent.

Implementation

void handleChanged(_i3.ChangedEvent e) {
  _i4.callMethod(
    this,
    'handleChanged',
    [e],
  );
}