regionElipse.EventSinkService.NodeDoubleClick += new NodeViewEventHandler(EventSinkService_NodeDoubleClick)
private void EventSinkService_NodeDoubleClick(NNodeViewEventArgs args){MessageHelper.InfoMessage(this.ParentForm, args.HitNode.ToString())}
Hi,
To disable inplace editing and resizing of a shape just modify its protections:
NAbilities protection = shape.Protection;
protection.InplaceEdit = true;
protection.ResizeX = true;
protection.ResizeY = true;
shape.Protection = protection;