Raised when items are added, removed, or moved from a Collection.

interface ChangeEvent<T> {
    added: T[];
    moved: T[];
    removed: T[];
    target: Collection<T>;
}

Type Parameters

  • T

Properties

added: T[]

The items that were added.

moved: T[]

The items that were moved.

removed: T[]

The items that were removed.

target: Collection<T>

The Collection that raised the event.