Implemented interface member:
6 references to RemoveAt
System.Windows.Forms (1)
System\Windows\Forms\Controls\TabControl\TabControl.TabPageCollection.cs (1)
344RemoveAt(index);
System.Windows.Forms.Tests (4)
System\Windows\Forms\TabControl.TabPageCollectionTests.cs (4)
4837collection.RemoveAt(1); 4848collection.RemoveAt(0); 4871Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.RemoveAt(index)); 4886Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.RemoveAt(index));
System.Windows.Forms.UI.IntegrationTests (1)
TabControlTests.cs (1)
124tabControl.TabPages.RemoveAt(0);