Class DiagramItemsChangedEventArgs
Represents ItemsChanged event args.
Inheritance
System.Object
System.EventArgs
DiagramItemsChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI.Diagrams
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public class DiagramItemsChangedEventArgs : EventArgs
Constructors
DiagramItemsChangedEventArgs(IEnumerable, IEnumerable, NotifyCollectionChangedAction)
Initializes a new instance of the DiagramItemsChangedEventArgs class.
Declaration
public DiagramItemsChangedEventArgs(IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action)
Parameters
System.Collections.IEnumerable
newItems
The new items. |
System.Collections.IEnumerable
oldItems
The old items. |
System.Collections.Specialized.NotifyCollectionChangedAction
action
The action. |
Properties
Action
Gets the action.
Declaration
public NotifyCollectionChangedAction Action { get; }
Property Value
System.Collections.Specialized.NotifyCollectionChangedAction
|
NewItems
The new items.
Declaration
public IEnumerable<object> NewItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|
OldItems
The old items.
Declaration
public IEnumerable<object> OldItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|