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 ) );
        }