Raised when the bounding rectangle of a cell has been changed.
Namespace: MindFusion.Diagramming.Wpf.Lanes
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public event EventHandler<CellBoundsEventArgs> CellBoundsChanged |
Visual Basic
Copy Code
|
|---|
Public Event CellBoundsChanged As EventHandler(Of CellBoundsEventArgs) |
Event DataCellBoundsChanged event handlers receive an argument of type CellBoundsEventArgs.
RemarksBy default, diagram items are not affected by resizing cells in the lanes grid. By handling this event, you can move or resize items so that they stay aligned to their enclosing grid elements, as suits your application logic.
See Also