Skip to main content

SelectionModelSelectionChangedEventArgs Class

Definition

Assembly:Avalonia.Controls
Package:Avalonia
public class SelectionModelSelectionChangedEventArgs

Inheritance: EventArgs -> SelectionModelSelectionChangedEventArgs

Properties

NameDescription
DeselectedIndexesGets the indexes of the items that were removed from the selection.
DeselectedItemsGets the items that were removed from the selection.
SelectedIndexesGets the indexes of the items that were added to the selection.
SelectedItemsGets the items that were added to the selection.

DeselectedIndexes Property

Gets the indexes of the items that were removed from the selection.

public System.Collections.Generic.IReadOnlyList<int> DeselectedIndexes { get; set; }

DeselectedItems Property

Gets the items that were removed from the selection.

public System.Collections.Generic.IReadOnlyList<object> DeselectedItems { get; set; }

SelectedIndexes Property

Gets the indexes of the items that were added to the selection.

public System.Collections.Generic.IReadOnlyList<int> SelectedIndexes { get; set; }

SelectedItems Property

Gets the items that were added to the selection.

public System.Collections.Generic.IReadOnlyList<object> SelectedItems { get; set; }