IUIAnimationTransitionLibrary2::CreateReversalTransition method (uianimation.h)

Creates a reversal scalar transition.

Syntax

HRESULT CreateReversalTransition(
  [in]  UI_ANIMATION_SECONDS    duration,
  [out] IUIAnimationTransition2 **transition
);

Parameters

[in] duration

The duration of the transition.

[out] transition

The new reversal transition.

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. See Windows Animation Error Codes for a list of error codes.

Remarks

A reversal transition smoothly changes direction over the specified duration. The final value will be the same as the initial value and the final velocity will be the negative of the initial velocity. The following figure shows such a reversal transition.

Diagram showing a reversal transition

Requirements

Requirement Value
Minimum supported client Windows 8, Windows 7 and Platform Update for Windows 7 [desktop apps | UWP apps]
Minimum supported server None supported
Target Platform Windows
Header uianimation.h
DLL UIAnimation.dll

See also

IUIAnimationTransition2

IUIAnimationTransitionLibrary2