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

Add() public method

Adds a WizardPage into the Collection
public Add ( WizardPage value ) : int
value WizardPage The page to add
return int
        public int Add(WizardPage value )
        {
            int result = List.Add( value );
            return result;
        }