Class
DiagramItemsChangingEventArgs

Represents ItemsChanging event args.

Definition

Namespace:Telerik.Windows.Controls.Diagrams

Assembly:Telerik.Windows.Controls.Diagrams.dll

Syntax:

cs-api-definition
public class DiagramItemsChangingEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsDiagramItemsChangingEventArgs

Constructors

DiagramItemsChangingEventArgs(RoutedEvent, IEnumerable, IEnumerable, NotifyCollectionChangedAction)

Initializes a new instance of the DiagramItemsChangingEventArgs class.

Declaration

cs-api-definition
public DiagramItemsChangingEventArgs(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>