Hi,
You should subscribe to the PropertyChanged event of the document’s event sink service:
document.EventSinkService.NodePropertyChanged += new NodePropertyEventHandler(EventSinkService_NodePropertyChanged);
In the event handler you can use code similar to :
private void EventSinkService_NodePropertyChanged(NNodePropertyEventArgs args)
{
if (args.PropertyName == "Text")
NLabel label = args.Node as NLabel;
if (label != null)
// Do what you need here
}
Best Regards,Nevron Support Team
when inplaceedit is allowd to edit how to catch the lable or text of shapae is get changed.
please reply urgent. we are planning to purchase your diagram lib.