Search
Grid.CellBoundsChanged Event
See Also
 





Raised when the bounding rectangle of a cell has been changed.

Namespace: MindFusion.Diagramming.Lanes
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<CellBoundsEventArgs> CellBoundsChanged

Visual Basic  Copy Code

Public Event CellBoundsChanged As EventHandler(Of CellBoundsEventArgs)

 Event Data

CellBoundsChanged event handlers receive an argument of type CellBoundsEventArgs.

 Remarks

By 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