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

Remove() public method

Removes the given page from the collection
public Remove ( WizardPage value ) : void
value WizardPage Page to remove
return void
        public void Remove( WizardPage value )
        {
            //Remove the item
            List.Remove( value );
        }