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. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
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 | The value to set. |
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.
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;