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

Contains() public method

Detects if a given Page is in the Collection
public Contains ( WizardPage value ) : bool
value WizardPage Page to find
return bool
        public bool Contains( WizardPage value )
        {
            // If value is not of type Int16, this will return false.
            return( List.Contains( value ) );
        }