ZForge.Controls.Wizard.PageCollection.Insert C# (CSharp) 메소드

Insert() 공개 메소드

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
리턴 void
        public void Insert( int index, WizardPage value )
        {
            List.Insert(index, value );
        }