Class BoundsChangedEventArgs
Inheritance
System.Object
System.EventArgs
BoundsChangedEventArgs
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.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class BoundsChangedEventArgs : EventArgs
Constructors
BoundsChangedEventArgs(Rect, Rect)
Initializes a new instance of the BoundsChangedEventArgs class.
Declaration
public BoundsChangedEventArgs(Rect oldValue, Rect newValue)
Parameters
System.Windows.Rect
oldValue
The old value. |
System.Windows.Rect
newValue
The new value. |
Properties
NewBounds
Gets the new value.
Declaration
public Rect NewBounds { get; }
Property Value
System.Windows.Rect
|
OldBounds
Gets the old value.
Declaration
public Rect OldBounds { get; }
Property Value
System.Windows.Rect
|