Skip to main content
A newer version of this page is available. .

Transition.TransitionType Property

Gets or sets the type of animation effect applied by this Transition. This property accepts “…Transition” objects from the DevExpress.Utils.Animation namespace.

Namespace: DevExpress.Utils.Animation

Assembly: DevExpress.Utils.v19.1.dll

Declaration

public ITransitionAnimator TransitionType { get; set; }

Property Value

Type Description
DevExpress.Utils.Animation.ITransitionAnimator

An object that specifies the animation effect applied by this Transition.

Remarks

The sample below illustrates how to create a transition that applies the Zoom animation effect to its target control.

 DevExpress.Utils.Animation.Transition transition = new DevExpress.Utils.Animation.Transition();
 transition.Control = this;
 DevExpress.Utils.Animation.ZoomTransition zoomEffect = new DevExpress.Utils.Animation.ZoomTransition();
 transition.TransitionType = zoomEffect;

The following code snippets (auto-collected from DevExpress Examples) contain references to the TransitionType property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also