J.
J.Nagarajan
Syncfusion Team
May 29, 2008 10:03 AM UTC
Hi sHIMON ,
Thanks for your interest in Syncfusion products.
The PinPointChanged event gets fired when you drag and drop a node within the diagram. You can handle this event by using the following code snippet.
this.diagram1.Model.EventSink.PinPointChanged += new PinPointChangedEventHandler(EventSink_PinPointChanged);
void EventSink_PinPointChanged(PinPointChangedEventArgs evtArgs)
{
Console.WriteLine(evtArgs.NodeAffected.Name);
}
Please let me know if this helps.
Regards,
Nagaraj
WS
Witold Slirz
March 8, 2010 12:32 PM UTC
And an opposite question.
How to catch the event of dragging a node from palette onto a diagram?