DiagramControl.ItemsRotating Event
Fires when the end-user attempts to rotate a diagram item.
Namespace: DevExpress.XtraDiagram
Assembly: DevExpress.XtraDiagram.v24.1.dll
NuGet Package: DevExpress.Win.Diagram
Declaration
[DiagramCategory(DiagramCategory.DiagramItems)]
public event EventHandler<DiagramItemsRotatingEventArgs> ItemsRotating
Event Data
The ItemsRotating event's data class is DiagramItemsRotatingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
ActionSource | Indicates whether the rotating operation is performed using the rotation handle or the Properties Panel. |
Cancel | Gets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs. |
CenterOfRotation | Returns the coordinates of the center of rotation. |
Items | Returns the collection of data about items that are being rotated. |
Stage | Indicates whether the rotating operation has just started, is continuing or has been finished or canceled. |
Remarks
The event’s Items property returns the items that are being rotated. The ActionSource property indicates whether the rotating operation is performed using the mouse or pressing key shortcuts. The Stage property indicates whether the rotating operation has just started, is continuing or has been finished or canceled. The CenterOfRotation property returns the rotation center point.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ItemsRotating event.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.