AD
Administrator
Syncfusion Team
June 22, 2006 11:06 AM UTC
Hi Nick,
If your intention is to clear the selection of a link,then you can go with this by clearing the node from the Diagram.Selectionlist .Please look into the following small code snippet.
// Check if the selected node is a Link
if(this.diagram1.Controller.SelectionList.First is Link )
{
this.diagram1.SelectionList.Clear();
this.diagram1.Controller.Model.UpdateViews();
}
Thanks for your interest in Syncfusion.Please let me know if this helps you.
Regards,
Praveena.