MobileForms Toolkit Documentation

GroupsCollection.OnInsertComplete Method 

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

protected override void OnInsertComplete(
int index,
object value
);

Parameters

index
The zero-based index at which to insert value.
value
The new value of the item at index.

Remarks

This method allows implementers to define processes that must be performed after inserting the element into the underlying ArrayList. 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.

See Also

GroupsCollection Class | Resco.Controls.OutlookControls Namespace