Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ImageSlider.NextImage Property

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

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v24.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