IBindingObjectParamValues.Item

Syntax

Item(Index: Integer): String;

Parameters

Index. Parameter number.

Description

The Item property determines the parameter value with the specified index.

Comments

Numbering of parameters starts from one. When setting the parameter value using the Item property, the following view is generated in binding string: PARAMVALUEx = "value", where x is the specified parameter number and value is the value set for the Item property. To specify the data type that has the sent value, one can add one of the values of the ForeVariantType enumeration before the value. The data type and the value are separated with a semicolon, for example, when PARAMVALUE1 = "4:10" is specified, the 10 value is sent as a real value.

The Item property is available if the ItemDefined property is set to True. If value of the Item property is changed, the ItemDefined property is automatically set to True.

Example

The example of use is given in description of the IBindingDimCombo.ParamValues property.

See also:

IBindingObjectParamValues