EasingFunctionDelegate Delegate

Represents the delegate type for the easing function of the scrolling animation.

Definition

Namespace: BeeMobile.iMenu
Assembly: BeeMobile.iMenu.NET48 (in BeeMobile.iMenu.NET48.dll) Version: 4.8.1.5
C#
public delegate double EasingFunctionDelegate(
	double normalTime
)

Parameters

normalTime  Double
The normalized time from 0 to 1. 0 is the beginning of the animation, 1 is the end of the animation.

Return Value

Double
Normalized position from 0 to 1. The actual position offset from start toward end is multiplied by this value.

See Also