IResizingService
Interface
The service supporting the scaling of diagram items and groups.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.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
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.
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