Search
Selection.RemoveItem Method
See Also
 






Removes an item from the selection.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool RemoveItem (
    DiagramItem item
)

Visual Basic  Copy Code

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

 Parameters

item

The DiagramItem to be removed from the selection.

 Return Value

true if the item has been successfully removed; otherwise, false.

 Remarks

Call this method to deselect an item. Note that the item is not deleted, but just removed from the selection.

 See Also