Skip to main content

SliderImageCollection.Insert(Int32, Image) Method

Places an image object at the specified position in the current SliderImageCollection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void Insert(
    int index,
    Image image
)

Parameters

Name Type Description
index Int32

An integer value indicating a position within the current SliderImageCollection to which an image will be placed.

image Image

An Image object to be added to a specified position in the current SliderImageCollection.

Remarks

The Insert adds an Image object into the current SliderImageCollection and places it to a specified position. To append an Image to a SliderImageCollection, use the SliderImageCollection.Add method instead.

See Also