Class ResizingEventArgs
Represent resizing event args.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public sealed class ResizingEventArgs : ItemsManipulationEventArgs
Constructors
ResizingEventArgs(IEnumerable<IDiagramItem>)
Initializes a new instance of the ResizingEventArgs class.
Declaration
public ResizingEventArgs(IEnumerable<IDiagramItem> items)
Parameters
System.Collections.Generic.IEnumerable<IDiagramItem>
items
The items. |
ResizingEventArgs(IEnumerable<IDiagramItem>, Rect)
Initializes a new instance of the ResizingEventArgs class.
Declaration
public ResizingEventArgs(IEnumerable<IDiagramItem> items, Rect newBounds)
Parameters
System.Collections.Generic.IEnumerable<IDiagramItem>
items
The items. |
System.Windows.Rect
newBounds
The new bounds. |
ResizingEventArgs(IEnumerable<IDiagramItem>, Rect, Point)
Initializes a new instance of the ResizingEventArgs class.
Declaration
public ResizingEventArgs(IEnumerable<IDiagramItem> items, Rect newBounds, Point mousePosition)
Parameters
System.Collections.Generic.IEnumerable<IDiagramItem>
items
The items. |
System.Windows.Rect
newBounds
The new bounds. |
System.Windows.Point
mousePosition
The mouse position. |
Properties
NewBounds
Gets the new bounds.
Declaration
public Rect NewBounds { get; }
Property Value
System.Windows.Rect
|