Skip to main content

CarouselPanel.ActiveItemIndex Property

Gets or sets the active item by its index.

Namespace: DevExpress.Xpf.Carousel

Assembly: DevExpress.Xpf.Carousel.v23.2.dll

NuGet Package: DevExpress.Wpf.Carousel

Declaration

public int ActiveItemIndex { get; set; }

Property Value

Type Description
Int32

An integer value specifying the active item’s index in the source sequence.

Remarks

Use this property to navigate to a particular item programmatically. Note that you can also allow end-users to navigate between items. See the CarouselPanel.ActivateItemOnClick property and CarouselNavigator class descriptions for more information.

If it’s easier for you to obtain the object representing the required item, instead of determining its index, use the CarouselPanel.ActiveItem property for item activation tasks.

See Also