DiagramControl.ItemBoundsChanged Event
In This Article
Fires each time an item’s bounds are changed.
Namespace: DevExpress.XtraDiagram
Assembly: DevExpress.XtraDiagram.v24.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. |
New |
Returns the new angle at which the item is rotated. |
New |
Gets the previous item’s index within the Items collection of its parent. |
New |
Returns the item’s new parent. |
New |
Returns the new coordinates of the item’s upper left corner. |
New |
Gets the new size of the item. |
Old |
Returns the angle at which the item was previously rotated. |
Old |
Gets the previous item’s index within the Items collection of its parent. |
Old |
Returns the item’s previous parent. |
Old |
Returns the previous coordinates of the item’s upper left corner. |
Old |
Gets the previous size of the item. |
#Remarks
The Item event’s parameter returns the item whose bounds are changed.
See Also