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

Insert() public method

public Insert ( int index, string key, string text, string imageKey ) : void
index int
key string
text string
imageKey string
return void
			public void Insert (int index, string key, string text, string imageKey) 
			{
				TabPage page = new TabPage(text);
				page.Name = key;
				owner.InsertTab (index, page);
				page.ImageKey = imageKey;
			}
			void IList.Remove (object value)

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 ) : void
TabControl.TabPageCollection::Insert ( int index, string key, string text, int imageIndex ) : void