Represents ItemsChanged event args.
Definition
Namespace:Telerik.Windows.Controls.Diagrams
Assembly:Telerik.Windows.Controls.Diagrams.dll
Syntax:
C#
public class DiagramItemsChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsDiagramItemsChangedEventArgs
Constructors
Initializes a new instance of the DiagramItemsChangedEventArgs class.
C#
public DiagramItemsChangedEventArgs(RoutedEvent routedEvent, IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action = NotifyCollectionChangedAction.Reset)
The routed event.
newItemsIEnumerableThe new items.
oldItemsIEnumerableThe old items.
actionNotifyCollectionChangedActionThe action.
Properties
Gets the action.
C#
public NotifyCollectionChangedAction Action { get; }
The new items.
C#
public IEnumerable<object> NewItems { get; }
The old items.
C#
public IEnumerable<object> OldItems { get; }