次の方法で共有


ListView.CheckedIndexCollection.IndexOf メソッド

リスト ビュー コントロールの ListView.ListViewItemCollection 内で指定されたインデックスについて、 System.Windows.Forms.ListView.CheckedIndexCollection 内におけるインデックスを返します。

Public Function IndexOf( _
   ByVal checkedIndex As Integer _) As Integer
[C#]
public int IndexOf(intcheckedIndex);
[C++]
public: int IndexOf(intcheckedIndex);
[JScript]
public function IndexOf(
   checkedIndex : int) : int;

パラメータ

戻り値

ListView.ListViewItemCollection の指定されたインデックスが存在する ListView.CheckedIndexCollection 内の位置を示す、コレクションの 0 から始まるインデックス番号。インデックスがコレクション内で検出されなかった場合、戻り値は -1 です。

解説

(Contains メソッドを使用して) チェックされたインデックスのコレクション内に項目があることを確認したら、 IndexOf メソッドを使用して、 ListView.CheckedIndexCollection のインデックスの位置を確認できます。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

ListView.CheckedIndexCollection クラス | ListView.CheckedIndexCollection メンバ | System.Windows.Forms 名前空間 | Contains