Hi All,
Does anyone know how to access the Parameter Values displayed on a message in an Object Sequence diagram? For example, Object1 sends a message (calls) Object2:Math.Add(P1: int;P2 : int) : int
In the Message Properties I can specify that the values are say 1 and 2 for P1 and P2.
I can get hold of the operation profile by using the Misc_Data (probably not recommended):
string md1 = theConnector.get_MiscData(1);
and also via the connector's properties:
EA.Properties prop = theConnector.Properties;
foreach (EA.Property thePropery in prop)
{
string name1 = thePropery.Name;
EA.ObjectType ot = thePropery.ObjectType;
EA.PropType p = thePropery.Type;
string valid = thePropery.Validation;
object val = thePropery.Value;
}
but I just can't find the actual parameter values.
Any ideas.....?
