GetConnectorPropertiesName method: ConnectorInfo collection
Syntax
GetConnectorPropertiesName(Index)
Description
Use the GetConnectorPropertiesName to return the name of the connector property in the numeric position specified by Index.
Parameters
| Parameter | Description |
|---|---|
|
Index |
Specify the numeric position of the connector property name that you want to access. |
Returns
A string containing the name of a connector property.
Example
For &I = 1 to &Msg.IBInfo.IBConnectorInfo.GetNumberOfConnectorProperties();
&PropName = &Msg.IBInfo.IBConnectorInfo.GetConnectorPropertiesName(&I)
/* do processing */
End-For;