System.Windows.Forms.TabControl.TabPageCollection.ContainsKey C# (CSharp) Method

ContainsKey() public method

public ContainsKey ( string key ) : bool
key string
return bool
			public virtual bool ContainsKey (string key)
			{
				int index = this.IndexOfKey (key);
				return (index >= 0 && index < this.Count);
			}