Represents ItemsChanging event args.
Definition
Namespace:Telerik.Windows.Controls.Diagrams
Assembly:Telerik.Windows.Controls.Diagrams.dll
Syntax:
C#
public class DiagramItemsChangingEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsDiagramItemsChangingEventArgs
Constructors
Initializes a new instance of the DiagramItemsChangingEventArgs class.
C#
public DiagramItemsChangingEventArgs(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; }