Delegate AnimationFunction
- Namespace
- Northwoods.Go
- Assembly
- Northwoods.GoDiagram.WinForms.dll
Function that transforms the property values. It takes the animated object, start value, end value, easing function (the Easing), current time, duration, and animation state. It should modify one or more properties on the object.
public delegate void AnimationFunction(object obj, object startValue, object endValue, EasingFunction easing, double currentTime, int duration, Animation animation)
Parameters
obj
objectthe animated object.
startValue
objectthe start value.
endValue
objectthe end value.
easing
EasingFunctionthe EasingFunction
currentTime
doublethe current time
duration
intthe duration of the animation
animation
Animationthe animation state