ExternalConnectionCollection
Contents
[
Hide
]ExternalConnectionCollection class
Specifies the ExternalConnection collection
class ExternalConnectionCollection;
Methods
| Method | Description |
|---|---|
| get(number) | Gets the ExternalConnection element at the specified index. |
| get(string) | Gets the ExternalConnection element with the specified name. |
| set(ExternalConnection, number) | Gets the ExternalConnection element at the specified index. |
| getExternalConnectionById(number) | Gets the ExternalConnection element with the specified id. |
get(number)
Gets the ExternalConnection element at the specified index.
get(index: number) : ExternalConnection;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The zero based index of the element. |
Returns
The element at the specified index.
get(string)
Gets the ExternalConnection element with the specified name.
get(connectionName: string) : ExternalConnection;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| connectionName | string | the name of data connection |
Returns
The element with the specified name.
set(ExternalConnection, number)
Gets the ExternalConnection element at the specified index.
set(value: ExternalConnection, index: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | ExternalConnection | |
| index | number | The zero based index of the element. |
Returns
The element at the specified index.
getExternalConnectionById(number)
Gets the ExternalConnection element with the specified id.
getExternalConnectionById(connId: number) : ExternalConnection;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| connId | number | external connection id |
Returns
The element with the specified id.