CollectionExtended
T
OnSetComplete Method
|
Performs additional processes after setting a value in the collection.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
protected override void OnSetComplete(
int index,
T oldValue,
T newValue
)
Protected Overrides Sub OnSetComplete (
index As Integer,
oldValue As T,
newValue As T
)
protected:
virtual void OnSetComplete(
int index,
T oldValue,
T newValue
) override
abstract OnSetComplete :
index : int *
oldValue : 'T *
newValue : 'T -> unit
override OnSetComplete :
index : int *
oldValue : 'T *
newValue : 'T -> unit
Parameters
-
index
-
Type:
System
Int32
The zero-based index at which oldValue can be found.
-
oldValue
-
Type:
T
The value to replace with newValue.
-
newValue
-
Type:
T
The new value of the element at the index.
See Also