Vcl.Controls.TCustomListControl.ItemIndex

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property ItemIndex: Integer read GetItemIndex write SetItemIndex;

C++

__property int ItemIndex = {read=GetItemIndex, write=SetItemIndex, nodefault};

プロパティ

種類 可視性 ソース ユニット
property public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TCustomListControl

説明

選択されている項目のインデックスを指定します。

ItemIndex プロパティを読み出すと,どの項目が選択されているかを判別できます。リストの 1 番めにある項目のインデックス値は 0,2 番めの項目のインデックス値は 1 で,以後もインデックスが順次割り当てられます。選択されている項目がない場合,ItemIndex の値は -1 です。リストコントロールが複数の項目の選択をサポートする場合,ItemIndex は,フォーカスのある選択対象項目のインデックスです。

ItemIndex をプログラムに基づいて設定すると,インデックス値を渡すことで項目を選択できます。

メモ:  TCustomListControl の下位オブジェクトで ItemIndex プロパティを実装するには,プロテクト GetItemIndex メソッドおよび SetItemIndex メソッドをオーバーライドします。

関連項目