7 references to Insert
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\ListViewItem.ListViewSubItemCollection.cs (1)
324Insert(index, subItem);
System.Windows.Forms.Tests (6)
System\Windows\Forms\ListViewSubItemCollectionTests.cs (6)
625collection.Insert(1, subItem); 639collection.Insert(0, subItem); 654Assert.Throws<ArgumentNullException>("item", () => collection.Insert(1, null)); 664Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(index, null)); 1062listViewItem.SubItems.Insert(0, subItem1); 1063listViewItem.SubItems.Insert(1, subItem2);