ZForge.Controls.Wizard.PageCollection.Contains C# (CSharp) Метод

Contains() публичный Метод

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