GefExprListAnim.Add (method)

Gets the new item added to the collection.
Syntax: Set GefExprListAnimElement = object.Add ( )
Description: For GefExprListAnim, returns a new GefExprListAnimElement.

Example:

Sub ExprListAnim_Add()
    
    Dim oCimExprListAnim As GefExprListAnim
    Dim oCimExprListAnimElmt As GefExprListAnimElement
    
    Set oCimExprListAnim = CimGetObject.ExprListAnim
    Set oCimExprListAnimElmt = oCimExprListAnim.Add
    
    oCimExprListAnimElmt.Expression ="1"
    oCimExprListAnimElmt.AnimatesBlink = True
    
End Sub