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

Represents ItemsChanged event args.

Definition

Namespace:Telerik.WinControls.UI.Diagrams

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

C#
public class DiagramItemsChangedEventArgs : EventArgs

Inheritance: objectEventArgsDiagramItemsChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the DiagramItemsChangedEventArgs class.

C#
public DiagramItemsChangedEventArgs(IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action = NotifyCollectionChangedAction.Reset)
Parameters:newItemsIEnumerable

The new items.

oldItemsIEnumerable

The old items.

actionNotifyCollectionChangedAction

The action.

Properties

Gets the action.

C#
public NotifyCollectionChangedAction Action { get; }

NewItems

IEnumerable<object>

The new items.

C#
public IEnumerable<object> NewItems { get; }

OldItems

IEnumerable<object>

The old items.

C#
public IEnumerable<object> OldItems { get; }