System.Windows.Forms.TabControl.TabPageCollection.RemoveByKey C# (CSharp) Méthode

RemoveByKey() public méthode

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