Skip to main content
A newer version of this page is available. .

DiagramControl.ItemsRotating Event

Fires when the end-user attempts to rotate a diagram item.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v18.2.dll

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.

See Also