GefMoveAnimAttrib (object)

Represents the attributes of horizontal move animation and vertical.
Description: There are two GefMoveAnimAttrib objects for each GefMoveAnim. One represents the attributes of horizontal move animation, the other of vertical.

Each GefMoveAnimAttrib specifies the attributes of move animation. If the move animation is driven by a Point ID (that is, if the Expression property is a simple Point ID as opposed to an expression), then the move animation can also have an associated Slider Action. If the SliderAction property is True, then in CimView you can slide the object around to change the value of the point.

Example:

Sub GefMoveAnimAttrib_Expression()
    
    Dim oCimObj As GefObject
    Dim oCimMoveAnim As GefMoveAnim
    Dim oCimMoveAnimAttrib As GefMoveAnimAttrib
    
    Set oCimObj = CimGetObject
    Set oCimMoveAnim = oCimObj.MoveAnim
    If Not oCimMoveAnim Is Nothing Then
        Set oCimMoveAnimAttrib = oCimMoveAnim.HorizontalAttrib
        If Not oCimMoveAnimAttrib Is Nothing Then
            MsgBox "The expression is " & _
                oCimMoveAnimAttrib.Expression
        End If
    End If
    
End Sub
Properties: Application , Expression , IsHorizontal , IsVertical , MaxExprValue , MaxTranslation , MinExprValue , Parent , SliderAction , SliderActionCondition , SliderActionConfirm
Methods: CanSlideWithExpression