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

this() public method

public this ( int index ) : TabPage
index int
return TabPage
			public virtual TabPage this [int index] {
				get {
					return (TabPage)((TabViewItemHelper)owner.m_helper.Items[index]).Host;
				}
				set {
					owner.SetTab (index, value);
				}
			}
			public virtual TabPage this [string key] {

Same methods

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