IDictionaryEvents

Type interface

Defines events from Dictionary.

Inheritance

IDictionaryEvents does not extend any other symbol.

IDictionaryEvents is not extended by any other symbol.

Properties

cleared
#

Param { type: "cleared",
  target: Target }

Invoked when dictionary is cleared.

insertKey
#

Param { key: Key,
  newValue: Value,
  type: "insertKey",
  target: Target }

Invoked when insertKey() method is called.

removeKey
#

Param { key: Key,
  oldValue: Value,
  type: "removeKey",
  target: Target }

Invoked when removeKey() method is called.

removed
#

Param { oldValue: Value,
  type: "removed",
  target: Target }

Invoked when an item is removed from the dictionary.

setKey
#

Param { key: Key,
  newValue: Value,
  oldValue: Value,
  type: "setKey",
  target: Target }

Invoked when setKey() method is called.