GefTransparencyAnim.Expression (property)

Gets and sets the string used as an expression.
Syntax: VARIANT = object.Expression
object.Expression = VARIANT
Description: The Expression Property gets or sets the sting used for the transparency animation.

Example:

Sub TransparencyAnim_Expression()
    
    Dim oCimObj As GefObject
    Dim oCimTransparencyAnim As GefTransparencyAnim
    
    Set oCimObj = CimGetObject
    Set oCimTransparencyAnim = oCimObj.TransparencyAnim
    
    MsgBox "The Current Transparency animation Expression " & _
        "is " & oCimTransparencyAnim.Expression
    
End Sub