ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX.Animation Namespace / Variable2.ValueChangedDelegate Delegate
The storyboard that is animating the animation variable specified by the variable parameter.
The animation variable that has been updated.
The new value of the animation variable.
The previous value of the animation variable.
The dimension in which the value of the animation variable changed.

In This Topic
    Variable2.ValueChangedDelegate Delegate
    In This Topic
    A delegate that handles events that occur when the value of an animation variable changes in the specified dimension.
    Syntax
    'Declaration
     
    Public Delegate Sub Variable2.ValueChangedDelegate( _
       ByVal storyboard As Storyboard2, _
       ByVal variable As Variable2, _
       ByVal newValue() As System.Double, _
       ByVal previousValue() As System.Double, _
       ByVal cDimension As System.Integer _
    ) 
    public delegate void Variable2.ValueChangedDelegate( 
       Storyboard2 storyboard,
       Variable2 variable,
       System.double[] newValue,
       System.double[] previousValue,
       System.int cDimension
    )

    Parameters

    storyboard
    The storyboard that is animating the animation variable specified by the variable parameter.
    variable
    The animation variable that has been updated.
    newValue
    The new value of the animation variable.
    previousValue
    The previous value of the animation variable.
    cDimension
    The dimension in which the value of the animation variable changed.
    See Also