Class TabSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
TabSelectionChangedEventArgs
Namespace: Syncfusion.Maui.Toolkit.TabView
Assembly: Syncfusion.Maui.Toolkit.dll
Syntax
public class TabSelectionChangedEventArgs : EventArgs
Constructors
TabSelectionChangedEventArgs()
Declaration
public TabSelectionChangedEventArgs()
Properties
Handled
Gets or sets a value indicating whether the SelectionChanged event is handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Returns true if the SelectionChanged event has been handled, otherwise false. |
NewIndex
Gets the index of currently selected tab item.
Declaration
public int NewIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Returns the index of currently selected tab item. |
OldIndex
Gets the index of previously selected tab item.
Declaration
public int OldIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Returns the index of previously selected tab item. |