Class DiagramItemsChangingEventArgs
Represents ItemsChanging event args.
Inheritance
System.Object
DiagramItemsChangingEventArgs
Namespace: Telerik.WinControls.UI.Diagrams
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public class DiagramItemsChangingEventArgs : CancelEventArgs
Constructors
DiagramItemsChangingEventArgs(IEnumerable, IEnumerable, NotifyCollectionChangedAction)
Initializes a new instance of the Diagram
Declaration
public DiagramItemsChangingEventArgs(IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action)
Parameters
System. The new items. |
System. The old items. |
System. The action. |
Properties
Action
Gets the action.
Declaration
public NotifyCollectionChangedAction Action { get; }
Property Value
System.
|
NewItems
The new items.
Declaration
public IEnumerable<object> NewItems { get; }
Property Value
System.
|
OldItems
The old items.
Declaration
public IEnumerable<object> OldItems { get; }
Property Value
System.
|