windowsforms-devexpress-dot-xtradiagram-dot-diagramcontrol-29f6f9fc.md
Fires each time an item’s bounds are changed.
Namespace : DevExpress.XtraDiagram
Assembly : DevExpress.XtraDiagram.v25.2.dll
NuGet Package : DevExpress.Win.Diagram
[DiagramCategory(DiagramCategory.DiagramItems)]
public event EventHandler<DiagramItemBoundsChangedEventArgs> ItemBoundsChanged
<DiagramCategory(DiagramCategory.DiagramItems)>
Public Event ItemBoundsChanged As EventHandler(Of DiagramItemBoundsChangedEventArgs)
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. |
The Item event’s parameter returns the item whose bounds are changed.
See Also