ListView.ListViewItemCollection.IList.Insert(Int32, Object) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コレクション内の指定したインデックス位置にオブジェクトを挿入します。
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 未満か、Count の ListView.ListViewItemCollection プロパティの値を超える値です。
注釈
パラメーターには任意の item
型を指定できます。 が のListViewItem場合item
は、 に追加されますListView.ListViewItemCollection。 が別の型の場合item
は、 の メソッドitem
の文字列を含む新しい ListViewItem がToString作成されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET