Class SelectionEventArgs
Selection event args.
Inheritance
System.Object
System.EventArgs
SelectionEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
|