Class SelectionChangedEventArgs
The SelectionChangedEventArgs class holds an argument of the SelectionChanged event.
Inheritance
System.Object
SelectionChangedEventArgs
Namespace: Syncfusion.SfCarousel.XForms
Assembly: Syncfusion.SfCarousel.XForms.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
Constructors
SelectionChangedEventArgs()
Declaration
public SelectionChangedEventArgs()
Properties
SelectedIndex
Gets the value of the SelectedIndex. This property can be used to select a particular item based on index in SfCarousel.
Declaration
public int SelectedIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the selected. |
SelectedItem
Gets the value of the SelectedItem. This property can be used to select the particular item in SfCarousel.
Declaration
public object SelectedItem { get; }
Property Value
Type | Description |
---|---|
System.Object | The selected item. |