Class SelectionChangedEventArgs
Provides data for the event when the selection is changed in the segmented control.
Inheritance
System.Object
SelectionChangedEventArgs
Namespace: Syncfusion.Maui.Buttons
Assembly: Syncfusion.Maui.Buttons.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
Constructors
SelectionChangedEventArgs()
Declaration
public SelectionChangedEventArgs()
Properties
NewIndex
Gets the index of the newly selected item after the selection change.
Declaration
public Nullable<int> NewIndex { get; }
Property Value
Type |
---|
System.Nullable<System.Int32> |
NewValue
Gets the newly selected item after the selection change.
Declaration
public SfSegmentItem NewValue { get; }
Property Value
Type |
---|
SfSegmentItem |
OldIndex
Gets the index of the previously selected item before the selection change.
Declaration
public Nullable<int> OldIndex { get; }
Property Value
Type |
---|
System.Nullable<System.Int32> |
OldValue
Gets the previously selected item before the selection change.
Declaration
public SfSegmentItem OldValue { get; }
Property Value
Type |
---|
SfSegmentItem |