Creates an instance of the ObservableArray
Event handler which fires when the collection changes. See ObservableArrayChangedArgs for args
Adds items to the array, and raises the collectionChanged event to subscribers
Returns the backing array. Do not modify this collection. Use add or remove instead.
Clears the array. Raises the collectionChanged event to subscribers
When true, if the items in the array implement the IDeletable interface, the delete() function will be called. Defaults to false for backward compatibility
Returns true if the array contains an item
Gets an item at index
Inserts items at the specified index. Raises the collectionChanged event to subscribers
Removes an item by value. Raises the collectionChanged event to subscribers
The item to remove
When true, if the items in the array implement the IDeletable interface, the delete() function will be called. Defaults to false for backward compatibility
Removes an item at the specified index. Raises the collectionChanged event to subscribers
The item to remove
When true, if the items in the array implement the IDeletable interface, the delete() function will be called. Defaults to false for backward compatibility
Sets an item at index. Raises the collectionChanged event to subscribers
gets the number of elements in the array
Generated using TypeDoc
An Observable array which raises collectionChanged events when an item is added, removed or the collection cleared