Skip to main content
Tab

ImageSliderSlideShowSettings.Interval Property

Gets or sets the time between image changes in a slide show.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(5000)]
public int Interval { get; set; }

Property Value

Type Default Description
Int32 5000

An integer value that specifies the number of milliseconds between image changes.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to Interval
ASP.NET MVC Extensions ImageSliderSettings
.SettingsSlideShow .Interval
ASP.NET Web Forms Controls ASPxImageSlider
.SettingsSlideShow .Interval

Remarks

The ASPxImageSlider control has a built-in slide show functionality. You can use the Interval property to specify the time between image changes. The slide show settings can be customized via the ASPxImageSlider.SettingsSlideShow property.

On the client side, you can play and pause the slide show using the ASPxClientImageSlider.Play and ASPxClientImageSlider.Pause methods respectively. To determine whether the side show is playing, use the ASPxClientImageSlider.IsSlideShowPlaying method.

See Also