CollectionExtended
T
OnSet Method
|
Performs additional processes before 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 OnSet(
int index,
T oldValue,
T newValue
)
Protected Overrides Sub OnSet (
index As Integer,
oldValue As T,
newValue As T
)
protected:
virtual void OnSet(
int index,
T oldValue,
T newValue
) override
abstract OnSet :
index : int *
oldValue : 'T *
newValue : 'T -> unit
override OnSet :
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 index.
See Also