New to Telerik UI for WinFormsStart a free 30-day trial

Represent resizing event args.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

C#
public sealed class ResizingEventArgs : ItemsManipulationEventArgs

Inheritance: objectEventArgsDiagramItemsEventArgsItemsManipulationEventArgsResizingEventArgs

Inherited Members ItemsManipulationEventArgs.MousePositionDiagramItemsEventArgs.ItemsEventArgs.Empty

Constructors

Initializes a new instance of the ResizingEventArgs class.

C#
public ResizingEventArgs(IEnumerable<IDiagramItem> items, Rect newBounds, Point mousePosition)
Parameters:itemsIEnumerable<IDiagramItem>

The items.

newBoundsRect

The new bounds.

mousePositionPoint

The mouse position.

Initializes a new instance of the ResizingEventArgs class.

C#
public ResizingEventArgs(IEnumerable<IDiagramItem> items, Rect newBounds)
Parameters:itemsIEnumerable<IDiagramItem>

The items.

newBoundsRect

The new bounds.

Initializes a new instance of the ResizingEventArgs class.

C#
public ResizingEventArgs(IEnumerable<IDiagramItem> items)
Parameters:itemsIEnumerable<IDiagramItem>

The items.

Properties

Gets the new bounds.

C#
public Rect NewBounds { get; }