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

ASPxTrackBar.EnableAnimation Property

Gets or sets the value that specifies whether a specific animation effect is used when the drag handle position is changed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(true)]
public bool EnableAnimation { get; set; }

Property Value

Type Default Description
Boolean **true**

true to use animation; otherwise, false.

Remarks

This property is a wrapper of the TrackBarProperties.EnableAnimation property.

Example

This example demonstrates how to disable the ASPxTrackBar animation effect.

<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" EnableAnimation="False">
</dx:ASPxTrackBar>
See Also