Data.Win.ADODB.TParameters.Items
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: Data.Win.ADODB.pas Data.Win.ADODB.hpp
| |
Unit: Data.Win.ADODB | |
Parent: TParameters |
Delphi
property Items[Index: Integer]: TParameter read GetItem write SetItem; default;
C++
__property TParameter* Items[int Index] = {read=GetItem, write=SetItem/*, default*/};
Description
Contains the collection of parameters.
Items is a collection of TParameter objects. Each TParameter object in the collection represents an individual parameter. Use Items to access a particular parameter.
Index indicates the specific parameter to access. Index identifies the parameter's position in the collection of parameters, in the range 0 to Count - 1.