Version

OnInsertComplete Method (CalcSettingsCollection)

Notification method called after a new settings has been added or inserted into the collection.
Syntax
'Declaration
 
Protected Overrides Sub OnInsertComplete( _
   ByVal i As Integer, _
   ByVal val As Object _
) 
protected override void OnInsertComplete( 
   int i,
   object val
)

Parameters

i
The zero-based index at which val was inserted.
val
A CalcSettings instance that has been inserted into this collection.
Remarks

This method does some initializations to ensure the newly added settings object is consistent with the other settings already in this collection.

Inheritors who override this method must remember to call the base method implementation first.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also