CollectionExtended
T
OnInsert Method
|
Performs additional processes before inserting
a new element into 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 OnInsert(
int index,
T value
)
Protected Overrides Sub OnInsert (
index As Integer,
value As T
)
protected:
virtual void OnInsert(
int index,
T value
) override
abstract OnInsert :
index : int *
value : 'T -> unit
override OnInsert :
index : int *
value : 'T -> unit
Parameters
-
index
-
Type:
System
Int32
The zero-based index at which to insert value.
-
value
-
Type:
T
The new value of the element at index.
See Also