Search
Group.Detach Method
See Also
 





Detaches the specified item from this group.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Detach (
    DiagramItem item
)

Visual Basic  Copy Code

Public Function Detach( _
    item As DiagramItem _
) As Boolean

 Parameters

item
The DiagramItem to be detached.

 Return Value

false if the item could not be detached; otherwise, true.

 Remarks

Call this method to remove a item from this group. Note that this method does not delete the item, but just detaches it.

 See Also