Class ToolbarSelectionChangedEventArgs
Represents the selection changed event args.
Inheritance
System.Object
ToolbarSelectionChangedEventArgs
Namespace: Syncfusion.Maui.Toolbar
Assembly: Syncfusion.Maui.Toolbar.dll
Syntax
public class ToolbarSelectionChangedEventArgs : EventArgs
Constructors
ToolbarSelectionChangedEventArgs()
Declaration
public ToolbarSelectionChangedEventArgs()
Properties
NewToolbarItems
Gets the list of toolbar items that are currently selected after the selection change. In Single selection mode, this list contains at most one item.
Declaration
public List<SfToolbarItem> NewToolbarItems { get; }
Property Value
Type |
---|
System.Collections.Generic.List<SfToolbarItem> |
OldToolbarItems
Gets the list of toolbar items that were selected before the selection changed. In Single selection mode, this list contains at most one item.
Declaration
public List<SfToolbarItem> OldToolbarItems { get; }
Property Value
Type |
---|
System.Collections.Generic.List<SfToolbarItem> |