IUIAnimationTransitionLibrary::CreateReversalTransition method (uianimation.h)

Creates a reversal transition.

Syntax

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

Parameters

[in] duration

The duration of the transition.

[out] transition

The new reversal transition.

Return value

If the 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 figure below shows such a reversal transition.

Diagram showing a reversal transition

Requirements

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

See also

IUIAnimationTransition

IUIAnimationTransitionLibrary