Vcl.DBOleCtl.TDataBindings.Items

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

Delphi

property Items[Index: Integer]: TDataBindItem read GetItem write SetItem; default;

C++

__property TDataBindItem* Items[int Index] = {read=GetItem, write=SetItem/*, default*/};

プロパティ

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

説明

コレクション内の TDataBindItem オブジェクトへのインデックス付きアクセスを提供します。

Items プロパティを使用すると,TDataBindings が管理する TDataBindItem オブジェクトのプロパティにアクセスできます。

メモ:  Delphi コードでは,ItemsTDataBindings のデフォルトプロパティなので,プロパティ名を記述せずにこのプロパティを使用することができます。したがって,次の行は,



FirstDataBinding := DBOleCtl1.DataBindings.Items[0];



次のように記述できます。



FirstDataBinding := DBOleCtl1.DataBindings[0];



関連項目