ClassDiagramItemsChangedEventArgs
Class
Represents ItemsChanged event args.
Definition
Namespace:Telerik.Windows.Controls.Diagrams
Assembly:Telerik.Windows.Controls.Diagrams.dll
Syntax:
cs-api-definition
public class DiagramItemsChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsDiagramItemsChangedEventArgs
Constructors
DiagramItemsChangedEventArgs(RoutedEvent, IEnumerable, IEnumerable, NotifyCollectionChangedAction)
Initializes a new instance of the DiagramItemsChangedEventArgs class.
Declaration
cs-api-definition
public DiagramItemsChangedEventArgs(RoutedEvent routedEvent, IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action = NotifyCollectionChangedAction.Reset)
Parameters
routedEvent
RoutedEvent
The routed event.
newItems
The new items.
oldItems
The old items.
action
The action.
Properties
Action
Gets the action.
Declaration
cs-api-definition
public NotifyCollectionChangedAction Action { get; }
Property Value
NewItems
The new items.
Declaration
cs-api-definition
public IEnumerable<object> NewItems { get; }
Property Value
OldItems
The old items.
Declaration
cs-api-definition
public IEnumerable<object> OldItems { get; }
Property Value