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

AddRange() 공개 메소드

Adds an array of pages into the collection. Used by the Studio Designer generated coed
public AddRange ( WizardPage pages ) : void
pages WizardPage Array of pages to add
리턴 void
        public void AddRange(WizardPage[] pages)
        {
            // Use external to validate and add each entry
            foreach(WizardPage page in pages)
            {
                this.Add(page);
            }
        }