Implemented interface member:
14 references to RemoveAt
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListViewItem.ListViewSubItemCollection.cs (2)
332RemoveAt(index); 369RemoveAt(index);
System.Windows.Forms.Tests (12)
System\Windows\Forms\AccessibleObjects\ListViewItem.ListViewItemAccessibleObjectTests.cs (2)
521listView.Items[0].SubItems.RemoveAt(1); 522listView.Items[1].SubItems.RemoveAt(1);
System\Windows\Forms\AccessibleObjects\ListViewItem.ListViewSubItem.ListViewSubItemAccessibleObjectTests.cs (2)
517listViewItem.SubItems.RemoveAt(1); 518listViewItemInGroup.SubItems.RemoveAt(1);
System\Windows\Forms\ListViewSubItemCollectionTests.cs (8)
767collection.RemoveAt(0); 775collection.RemoveAt(1); 783collection.RemoveAt(1); 791collection.RemoveAt(0); 809Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.RemoveAt(index)); 819Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.RemoveAt(index)); 1100listViewItem.SubItems.RemoveAt(1); 1101listViewItem.SubItems.RemoveAt(0);