Class
DiagramItemsChangedEventArgs

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

IEnumerable

The new items.

oldItems

IEnumerable

The old items.

action

NotifyCollectionChangedAction

The action.

Properties

Action

Gets the action.

Declaration

cs-api-definition
public NotifyCollectionChangedAction Action { get; }

Property Value

NotifyCollectionChangedAction

NewItems

The new items.

Declaration

cs-api-definition
public IEnumerable<object> NewItems { get; }

Property Value

IEnumerable<object>

OldItems

The old items.

Declaration

cs-api-definition
public IEnumerable<object> OldItems { get; }

Property Value

IEnumerable<object>