RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TDataBindings.Items Property

Provides indexed access to the TDataBindItem objects in the collection.

Pascal
property Items [Index: Integer]: TDataBindItem;
C++
__property TDataBindItem Items[int Index];

Use Items to access the properties of TDataBindItem objects maintained by TDataBindings.

Note: In Delphi code, Items is the default property of TDataBindings, so the name of the property can be left off when using this property. Thus, the line:

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

Note: can be written as:

FirstDataBinding := DBOleCtl1.DataBindings[0];

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!