ZForge.Controls.Wizard.PageCollection.Insert C# (CSharp) Method

Insert() public method

Adds a new page at a particular position in the Collection
public Insert ( int index, WizardPage value ) : void
index int Position
value WizardPage Page to be added
return void
        public void Insert( int index, WizardPage value )
        {
            List.Insert(index, value );
        }