ListViewItem.ListViewSubItemCollection.Insert 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將子項目插入位於指定索引處的集合中。
public:
void Insert(int index, System::Windows::Forms::ListViewItem::ListViewSubItem ^ item);
public void Insert (int index, System.Windows.Forms.ListViewItem.ListViewSubItem item);
member this.Insert : int * System.Windows.Forms.ListViewItem.ListViewSubItem -> unit
Public Sub Insert (index As Integer, item As ListViewItem.ListViewSubItem)
參數
- index
- Int32
插入項目所在的索引位置 (以零為起始)。
ListViewItem.ListViewSubItem,代表要插入集合中的子項目。
例外狀況
index
參數小於零或大於 Count 之 ListViewItem.ListViewSubItemCollection 屬性的值。
備註
這個方法可讓您在 中的 ListViewItem.ListViewSubItemCollection 特定位置插入子專案。 若要新增子專案而不指定特定位置,請使用 Add 方法。 如果您想要將子專案陣列新增至集合,請使用 AddRange 方法。 如果您想要將新的子專案插入現有的子專案集合中,可以使用這個方法。