Class AutoCompleteSelectionChangedEventArgs
Provides event data for the SelectionChanged event.
Inheritance
System.Object
AutoCompleteSelectionChangedEventArgs
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class AutoCompleteSelectionChangedEventArgs : EventArgs
Constructors
AutoCompleteSelectionChangedEventArgs()
Declaration
public AutoCompleteSelectionChangedEventArgs()
Properties
AddedItems
Gets a list that contains the items that were selected.
Declaration
public IList<object> AddedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | The loosely typed collection of items that were selected in this event. |
RemovedItems
Gets a list that contains the items that were unselected.
Declaration
public IList<object> RemovedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | The loosely typed list of items that were unselected in this event. |