IRotationService
Interface
The service supporting the rotation of diagram items.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public interface IRotationService
Derived Classes:
Properties
Gets a value indicating whether this instance is rotating.
C#
bool IsRotating { get; }
True if this instance is rotating; otherwise, false.
Methods
Completes the rotation.
Initializes the rotate action.
C#
void InitializeRotate(IEnumerable<IDiagramItem> newSelectedItems, double adornerAngle, Rect bounds)
The selected items.
adornerAngledoubleThe adorner angle.
boundsRectThe adorner bounds.
Rotates the items to the specified mouse position.
Events
Occurs on complete rotating.
C#
event EventHandler<RotatingEventArgs> CompleteRotating
Occurs when rotating.
C#
event EventHandler<RotatingEventArgs> Rotating
Occurs on start rotating.
C#
event EventHandler<CancelingManipulationEventArgs> StartRotating