New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:routedEventRoutedEvent

The routed event.

newItemsIEnumerable

The new items.

oldItemsIEnumerable

The old items.

actionNotifyCollectionChangedAction

The 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; }