Class SelectionEventArgs
Selection event args.
Inheritance
System.Object
SelectionEventArgs
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class SelectionEventArgs : EventArgs
Constructors
SelectionEventArgs(IList, IList)
Initializes a new instance of the SelectionEventArgs class.
Declaration
public SelectionEventArgs(IList removedItems, IList addedItems)
Parameters
System.Collections.IList
removedItems
The removed items. |
System.Collections.IList
addedItems
The added items. |
Properties
AddedItems
Gets the added items.
Declaration
public IList AddedItems { get; }
Property Value
System.Collections.IList
|
RemovedItems
Gets the removed items.
Declaration
public IList RemovedItems { get; }
Property Value
System.Collections.IList
|