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 As Storyboard2, _
ByVal As Variable2, _
ByVal () As System.Double, _
ByVal () As System.Double, _
ByVal As System.Integer _
)
public delegate void Variable2.ValueChangedDelegate(
Storyboard2 ,
Variable2 ,
System.double[] ,
System.double[] ,
System.int
)
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