The answer from Sparx is
Hello Michael,
Thank you for your enquiry.
The "AddinBroadcast" tagged value type should only specify the name of
the add-in to be called - not the method.
E.g.
Type=AddinBroadcast;
Values=CS_AddinFramework;
Not:
Type=AddinBroadcast;
Values=CS_AddinFramework.EA_OnElementTagEdit;
Try removing the ".EA_OnElementTagEdit" part from your tagged value
definition.
Geert you are right with your tip. I did it and it works. qweryt what do you mean by it takes not back the parameter values ? I just put in
public void EA_OnElementTagEdit(EA.Repository Repository, long ObjectId, String TagName, ref String TagValue, ref String TagNotes)
{
TagNotes = "Notes";
TagValue = "Value";
}
and it works correctly.
Is "geerting" a kind oy joke between you and Paolo