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)
623collection.Insert(1, subItem); 637collection.Insert(0, subItem); 652Assert.Throws<ArgumentNullException>("item", () => collection.Insert(1, null)); 662Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(index, null)); 1060listViewItem.SubItems.Insert(0, subItem1); 1061listViewItem.SubItems.Insert(1, subItem2);