Class SelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
SelectionChangedEventArgs
Namespace: Syncfusion.UI.Xaml.Diagram.Stencil
Assembly: Syncfusion.SfDiagram.WPF.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
Constructors
SelectionChangedEventArgs(Object, IList, IList)
Initializes a new instance of the
Declaration
public SelectionChangedEventArgs(object source, IList addedItems, IList removedItems)
Parameters
Type | Name | Description |
---|---|---|
System.Object | source | |
System.Collections.IList | addedItems | |
System.Collections.IList | removedItems |
Properties
AddedItems
Gets a list that contains the items that were selected.
Declaration
public IList AddedItems { get; }
Property Value
Type |
---|
System.Collections.IList |
RemovedItems
Gets a list that contains the items that were unselected.
Declaration
public IList RemovedItems { get; }
Property Value
Type |
---|
System.Collections.IList |
Source
Gets or sets a reference to the object that raised the event.
Declaration
public object Source { get; }
Property Value
Type |
---|
System.Object |