GefExprListAnimElement.AnimatesBlink (property)

Gets and sets whether or not the animation element animates the blink attribute of the object.
Syntax: Boolean = object.AnimatesBlink
object.AnimatesBlink = Boolean
Description: The AnimatesBlink property toggles whether or not the object blinks under the expression condition.

Example:

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