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

AlertControl.FormShowingEffect Property

Gets or sets an animation effect applied when displaying an alert window.

Namespace: DevExpress.XtraBars.Alerter

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[DXCategory("Behavior")]
public virtual AlertFormShowingEffect FormShowingEffect { get; set; }

Property Value

Type Description
AlertFormShowingEffect

An AlertFormShowingEffect value that specifies the type of animation effect applied when displaying alert windows.

Available values:

Name Description
FadeIn

An alert window is displayed using a fade-in effect.

SlideVertical

An alert window appears onscreen by enlarging its height gradually from the zero value to the normal height.

SlideHorizontal

An alert window appears onscreen by enlarging its width gradually, from the zero value to the normal width.

MoveVertical

An alert window appears by sliding vertically onto the screen from out of the screen.

MoveHorizontal

An alert window appears by sliding horizontally onto the screen from out of the screen.

Remarks

When the AlertControl.Show method is called, an alert window is displayed with an animation effect. By default, the fade-in effect is used. Use the FormShowingEffect property to change the animation effect.

See Also