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

ImageSliderSlideShowSettings.PausePlayingWhenMouseOver Property

Specify whether the slide show is paused when the mouse is over an image.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

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

Property Value

Type Default Description
Boolean **false**

true, to pause a slide show when the mouse is over the image; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to PausePlayingWhenMouseOver
ASPxImageSlider
.SettingsSlideShow.PausePlayingWhenMouseOver
ImageSliderSettings
.SettingsSlideShow.PausePlayingWhenMouseOver
MVCxImageSlider
.SettingsSlideShow.PausePlayingWhenMouseOver

Remarks

The ASPxImageSlider control has a built-in slide show functionality. You can use the PausePlayingWhenMouseOver property to specify whether the slide show is paused when the mouse is over an image. 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