IResizingService
Interface
The service supporting the scaling of diagram items and groups.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Syntax:
C#
public interface IResizingService
Derived Classes:
Properties
Gets a value indicating whether this instance is resizing.
C#
bool IsResizing { get; }
True if this instance is resizing; otherwise, false.
Methods
Completes the resize.
C#
void CompleteResize(Rect finalBounds, Point mousePosition)
The final bounds.
mousePositionPointThe final mouse position.
Initializes the resize action.
C#
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.
Resizes to the new point.
C#
void Resize(Point newPoint)
The new point.
Starts the resize.
Events
Occurs on resizing completed.
C#
event EventHandler<ResizingEventArgs> CompleteResizing
Occurs when resizing.
C#
event EventHandler<ResizingEventArgs> Resizing
Occurs on resizing start.
C#
event EventHandler<CancelingManipulationEventArgs> StartResizing