OnRemoveComplete()

Namespace ›› System ›› MfCollectionBase ›› Methods ››
Parent Previous Next

OnRemoveComplete()

OnRemoveComplete(index, value)

OnRemoveComplete(index, ByRef value)

Performs additional custom processes after removing an element from the MfCollectionBase instance.

Parameters

index

The zero-based index at which value can be found.
Can be MfInteger instance or var integer.

value

The value of the element to remove from index.

Remarks

Protected Method
The default implementation of this method is intended to be overridden by a derived class to perform some action after the specified element is removed.

The collection reverts back to its previous state if one of the following occurs:

The default implementation of this method is an O(1) operation.

Notes to Implementers

This method allows implementers to define processes that must be performed after removing the element from the underlying MfList. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.

OnRemove() is invoked before the standard Remove behavior, whereas OnRemoveComplete() is invoked after the standard Remove behavior.