ListView.ListViewItemCollection.IList.Insert(Int32, Object) メソッド

定義

コレクション内の指定したインデックス位置にオブジェクトを挿入します。

 virtual void System.Collections.IList.Insert(int index, System::Object ^ item) = System::Collections::IList::Insert;
void IList.Insert (int index, object item);
void IList.Insert (int index, object? item);
abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
Sub Insert (index As Integer, item As Object) Implements IList.Insert

パラメーター

index
Int32

項目を挿入する、0 から始まるインデックス位置。

item
Object

挿入する項目を表すオブジェクト。

実装

例外

index パラメーターが 0 未満か、CountListView.ListViewItemCollection プロパティの値を超える値です。

注釈

パラメーターには任意の item 型を指定できます。 が のListViewItem場合itemは、 に追加されますListView.ListViewItemCollection。 が別の型の場合itemは、 の メソッドitemの文字列を含む新しい ListViewItemToString作成されます。

適用対象