Search
DiagramAdapter.destroyEditControl Method
See Also
 

Called to let you destroy a custom in-place editor control.

Namespace: com.mindfusion.diagramming
Package: com.mindfusion.diagramming

 Syntax

Java  Copy Code

public void destroyEditControl (
    InPlaceEditEvent e
)

 Parameters

e

An InPlaceEditEvent object providing information about the event.

 Remarks

This event is raised when the user clicks outside the editor, or when the endEdit method is invoked. Handle it to hide or destroy the edit control. You might also implement the copying of values from the editor to the diagram item's properties in this event handler.

 See Also