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

RemoveByKey() public method

public RemoveByKey ( string key ) : void
key string
return void
			public virtual void RemoveByKey (string key)
			{
				int index = this.IndexOfKey (key);
				if (index >= 0 && index < this.Count)
					this.RemoveAt (index);
			}