Universal Windows Service Class Library

EventArrayList.RemoveEvent Event

Event which will occures if an element was removed from array list.

public event ArrayListRemoveEventHandler RemoveEvent;

Event Data

The event handler receives an argument of type ArrayListEventArgs containing data related to this event. The following ArrayListEventArgs properties provide information specific to this event.

Property Description
Collection Get the collection of added objects.
Object Get the single added object.

Remarks

This event will be fired if one or more element were removed from array list. Callback functions using this event must have the same struct as ArrayListRemoveEventHandler delegate.

See Also

EventArrayList Class | uws.Utilities Namespace | ArrayListRemoveEventHandler