Skip to main content

ImageSlider.NextImage Property

Gets an image that follows the ImageSlider.CurrentImage within the specified ImageSlider object.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
public Image NextImage { get; }

Property Value

Type Description
Image

An Image object that follows the ImageSlider.CurrentImage within the specified ImageSlider object.

Remarks

The NextImage gets an Image object that will be displayed after the current one (you can get the currently displayed image via the ImageSlider.CurrentImage property). To switch to the next image at runtime, an end-user can click the ‘Forward’ navigation button. To shift to the next image via code, use the SliderBase.SlideNext method.

See Also