Skip to main content

DiagramControl.ItemBoundsChanged Event

Fires each time an item’s bounds are changed.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v23.2.dll

NuGet Package: DevExpress.Win.Diagram

Declaration

[DiagramCategory(DiagramCategory.DiagramItems)]
public event EventHandler<DiagramItemBoundsChangedEventArgs> ItemBoundsChanged

Event Data

The ItemBoundsChanged event's data class is DiagramItemBoundsChangedEventArgs. The following properties provide information specific to this event:

Property Description
Item Returns the item whose bounds are changed.
NewAngle Returns the new angle at which the item is rotated.
NewIndex Gets the previous item’s index within the Items collection of its parent.
NewParent Returns the item’s new parent.
NewPosition Returns the new coordinates of the item’s upper left corner.
NewSize Gets the new size of the item.
OldAngle Returns the angle at which the item was previously rotated.
OldIndex Gets the previous item’s index within the Items collection of its parent.
OldParent Returns the item’s previous parent.
OldPosition Returns the previous coordinates of the item’s upper left corner.
OldSize Gets the previous size of the item.

Remarks

The Item event’s parameter returns the item whose bounds are changed.

See Also