ResizingService
Class
Represents manipulation service.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public class ResizingService : GraphServiceBase, IResizingService
Inheritance: objectGraphServiceBaseResizingService
Implements:
Inherited Members
Constructors
Initializes a new instance of the ResizingService class.
Properties
Gets a value indicating whether this instance is resizing.
C#
public bool IsResizing { get; }
True if this instance is resizing; otherwise, false.
Implements:
Methods
Initializes the resize action.
C#
public virtual void InitializeResize(IEnumerable<IDiagramItem> newSelectedItems, double adornerAngle, Rect adornerBounds, ResizeDirection resizingDirection, Point startPoint)
The selected items.
adornerAngledoubleThe adorner angle.
adornerBoundsRectThe adorner bounds.
resizingDirectionResizeDirectionThe resizing direction.
startPointPointThe start point.
Implements:
Resizes to the new point.
Updates the parent containers of the selected items containers.
C#
protected virtual void UpdateContainers()
Events
Occurs on resizing completed.
C#
public event EventHandler<ResizingEventArgs> CompleteResizing
Implements:
Occurs when resizing.
C#
public event EventHandler<ResizingEventArgs> Resizing
Implements:
Occurs on resizing start.
C#
public event EventHandler<CancelingManipulationEventArgs> StartResizing
Implements: