Class
ComboBoxSelectionChangedEventArgs

Provides data for the SelectionChanged event. Contains information about items that were added to or removed from the selection.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class ComboBoxSelectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsComboBoxSelectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ComboBoxSelectionChangedEventArgs(IEnumerable<object>, IEnumerable<object>)

Initializes a new instance of the ComboBoxSelectionChangedEventArgs class.

Declaration

cs-api-definition
public ComboBoxSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)

Parameters

removedItems

IEnumerable<object>

The collection of items that were removed from the selection.

addedItems

IEnumerable<object>

The collection of items that were added to the selection.

Properties

AddedItems

Gets the collection of items that were added to the selection. This collection contains the items that are newly selected and are now part of the current selection.

Declaration

cs-api-definition
public IEnumerable<object> AddedItems { get; }

Property Value

IEnumerable<object>

RemovedItems

Gets the collection of items that were removed from the selection. This collection contains the items that were previously selected but are no longer part of the current selection.

Declaration

cs-api-definition
public IEnumerable<object> RemovedItems { get; }

Property Value

IEnumerable<object>