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

ASPxPopupControlBase.PopupAnimationType Property

Gets or sets a value specifying the animation type used to show popup windows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(AnimationType.Auto)]
public AnimationType PopupAnimationType { get; set; }

Property Value

Type Default Description
AnimationType **Auto**

One of the AnimationType enumeration values.

Available values:

Name Description
Slide

A control uses a slide animation effect.

Fade

A control uses a fade-in animation effect.

None

A control does not use animation effects.

Auto

The type of animation is determined by the control.

Remarks

Use the PopupAnimationType property to specify the type of animation used to show popup windows. If the PopupAnimationType property is set to Auto, a popup window is shown with a fade effect if the ASPxPopupControl.PopupHorizontalAlign and ASPxPopupControl.PopupVerticalAlign properties are set to WindowCenter; otherwise, the window is shown with the slide effect.

You can specify the animation type used to close popup windows with the ASPxPopupControlBase.CloseAnimationType property.

Fade Animation

PopupAnimationType_Fade

Slide Animation

PopupAnimationType_Slide

No Animation

PopupAnimationType_None

See Also