Table of Contents

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 object

the animated object.

startValue object

the start value.

endValue object

the end value.

easing EasingFunction

the EasingFunction

currentTime double

the current time

duration int

the duration of the animation

animation Animation

the animation state