Class DiagramItemsChangingEventArgs
Represents ItemsChanging event args.
Inherited Members
Namespace: Telerik.Windows.Controls.Diagrams
Assembly: Telerik.Windows.Controls.Diagrams.dll
Syntax
public class DiagramItemsChangingEventArgs : RadRoutedEventArgs
Constructors
DiagramItemsChangingEventArgs(RoutedEvent, IEnumerable, IEnumerable, NotifyCollectionChangedAction)
Initializes a new instance of the DiagramItemsChangingEventArgs class.
Declaration
public DiagramItemsChangingEventArgs(RoutedEvent routedEvent, IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Collections.IEnumerable
newItems
The new items. |
System.Collections.IEnumerable
oldItems
The old items. |
System.Collections.Specialized.NotifyCollectionChangedAction
action
The action. |
Properties
Action
Gets the action.
Declaration
public NotifyCollectionChangedAction Action { get; }
Property Value
System.Collections.Specialized.NotifyCollectionChangedAction
|
NewItems
The new items.
Declaration
public IEnumerable<object> NewItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|
OldItems
The old items.
Declaration
public IEnumerable<object> OldItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|