ItemCollection.VectorChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the items list of the collection has changed, or the collection is reset.
public:
virtual event VectorChangedEventHandler<Platform::Object ^> ^ VectorChanged;
// Register
event_token VectorChanged(VectorChangedEventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void VectorChanged(event_token const* cookie) const;
// Revoke with event_revoker
ItemCollection::VectorChanged_revoker VectorChanged(auto_revoke_t, VectorChangedEventHandler<IInspectable> const& handler) const;
public event VectorChangedEventHandler<object> VectorChanged;
function onVectorChanged(eventArgs) { /* Your code */ }
itemCollection.addEventListener("vectorchanged", onVectorChanged);
itemCollection.removeEventListener("vectorchanged", onVectorChanged);
- or -
itemCollection.onvectorchanged = onVectorChanged;
Public Custom Event VectorChanged As VectorChangedEventHandler(Of Object) Implements VectorChanged