I am creating a Aggregation connector though Add-In. I am able to create the connector without Strong target end point by using the below mentioned code.
EA.Connector connector = signalEle.Connectors.AddNew("", "Aggregation");
connector.SupplierID = parentElement.ElementID;
connector.Subtype = "Strong";
connector.StyleEx = "LFEP=" + strEleName.AttributeGUID + "L;";
connector.ClientEnd.Role = strEleName.Name;
connector.Update();
How to create the connector with Strong target end ?