Skip to main content
Tab

ImageSliderSlideShowSettings.AutoPlay Property

Specify whether slide show starts after control initialization.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool AutoPlay { get; set; }

Property Value

Type Default Description
Boolean false

true, to start slide show after control initialization; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

Remarks

The ASPxImageSlider control has a built-in slide show functionality. You can use the AutoPlay property to specify whether the slide show starts on a control initialization. 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