OnInsertComplete()

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

OnInsertComplete()

OnInsertComplete(index, value)

OnInsertComplete(index, ByRef value)

Performs additional custom processes after inserting a new element into the MfCollectionBase instance.

Parameters

index

The zero-based index at which to insert value.

value

The new value of the element at 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 inserted.

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 inserting the element into the underlying MfList. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.

OnInsert() is invoked before the standard Insert behavior, whereas OnInsertComplete() is invoked after the standard Insert behavior.