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

Insert() public méthode

public Insert ( int index, string key, string text ) : void
index int
key string
text string
Résultat void
			public void Insert (int index, string key, string text)
			{
				TabPage page = new TabPage(text);
				page.Name = key;
				owner.InsertTab (index, page);
			}

Same methods

TabControl.TabPageCollection::Insert ( int index, TabPage tabPage ) : void
TabControl.TabPageCollection::Insert ( int index, string text ) : void
TabControl.TabPageCollection::Insert ( int index, string key, string text, int imageIndex ) : void
TabControl.TabPageCollection::Insert ( int index, string key, string text, string imageKey ) : void