Class BoundsChangedEventArgs
Inheritance
System.Object
BoundsChangedEventArgs
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
|