CollectionBase
T
OnRemoveComplete Method
|
Performs additional custom processes after removing an element from this instance.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
protected virtual void OnRemoveComplete(
int index,
T value
)
Protected Overridable Sub OnRemoveComplete (
index As Integer,
value As T
)
protected:
virtual void OnRemoveComplete(
int index,
T value
)
abstract OnRemoveComplete :
index : int *
value : 'T -> unit
override OnRemoveComplete :
index : int *
value : 'T -> unit
Parameters
-
index
-
Type:
System
Int32
The zero-based index at which value can be found.
-
value
-
Type:
T
The value of the element to remove from index.
See Also