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

this() private method

private this ( TabPage tabPage ) : int
tabPage TabPage
return int
			internal int this[TabPage tabPage] {
				get {
					if (tabPage == null)
						return -1;

					for (int i = 0; i < this.Count; i++)
						if (this[i].Equals (tabPage))
							return i;

					return -1;
				}
			}

Same methods

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