Search
DiagramBase.ShapeNotDefined Event
See Also
 





Raised when the diagram being loaded contains nodes with an undefined shape.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<ShapeEventArgs> ShapeNotDefined

Visual Basic  Copy Code

Public Event ShapeNotDefined As EventHandler(Of ShapeEventArgs)

 Event Data

The UnknownId argument contains the shape identifier. Set the Shape argument to assign to the loaded node.

 Remarks

You can handle this event by loading a ShapeLibrary file or creating a new Shape instance from code.

 See Also