Class ComboBoxSelectionChangingEventArgs
Provides event data for the SelectionChanging event.
Inheritance
System.Object
ComboBoxSelectionChangingEventArgs
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class ComboBoxSelectionChangingEventArgs : CancelEventArgs
Constructors
ComboBoxSelectionChangingEventArgs()
Declaration
public ComboBoxSelectionChangingEventArgs()
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. |
AllowDetachedSelection
Gets or sets a value indicating whether the selected item in the list should be displayed or not.
Declaration
public bool AllowDetachedSelection { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
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. |