property Strategies.Item (key as Variant) as Strategy
Return an item within the collection. The key can be the name of the strategy or an index.

TypeDescription
key as Variant A long expression that indicates the index of strategy in the collection, a string expression that indicates the name of the strategy.
Strategy A Strategy object that holds the strategy

Use the Item property to access a strategy. Use the Strategies property to get the list of available strategies on the server. The Count property counts the elements in the collection. The Item property is the default property of the Strategies collection so the following statements are equivalents:

Strategies.Item(i)

or

Strategies(i)