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

this() public méthode

public this ( string key ) : TabPage
key string
Résultat TabPage
			public virtual TabPage this [string key] {
				get {
					if (string.IsNullOrEmpty (key))
						return null;

					int index = this.IndexOfKey (key);
					if (index < 0 || index >= this.Count)
						return null;
					
					return this[index];
				}
			}

Same methods

TabControl.TabPageCollection::this ( int index ) : TabPage
TabControl.TabPageCollection::this ( TabPage tabPage ) : int
TabControl.TabPageCollection::this ( int index ) : objectIList.System