Adds an item to the Dictionary.

Namespace: System.Extensions.Windows.Forms
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
protected override void InsertItem(
	int index,
	WizardPage item
)
Visual Basic
Protected Overrides Sub InsertItem ( 
	index As Integer,
	item As WizardPage
)
Visual C++
protected:
virtual void InsertItem(
	int index, 
	WizardPage^ item
) override
F#
abstract InsertItem : 
        index : int * 
        item : WizardPage -> unit 
override InsertItem : 
        index : int * 
        item : WizardPage -> unit 

Parameters

index
Type: System..::..Int32
The position in the collection to add the item.
item
Type: System.Extensions.Windows.Forms..::..WizardPage
The item to add.

See Also