Gets the specified item from the collection. | |
Syntax: | Set GefExprListAnimElement = object.Item ( Index ) |
Parameters: |
Optional Index As long
-
|
Description: | The Item method is the default method for
collections. The intIndex argument can range from 0 to Count-1. The GefExprListAnim collection support access by index number only. Example: Sub ExprListAnim_Item() Dim oCimExprListAnim As
GefExprListAnim Dim oCimExprListAnimElement As
GefExprListAnimElement Dim ExprCount As Integer Set oCimExprListAnim =
CimGetObject.ExprListAnim For ExprCount = 0 To
oCimExprListAnim.Count - 1 Set
oCimExprListAnimElement =
oCimExprListAnim.Item(ExprCount) oCimExprListAnimElement.AnimatesBlink
= True Next ExprCount End Sub |