1
General Board / Re: EA Models: Mass Diagram ElementsTransformation
« on: April 19, 2009, 04:44:47 am »
I do not think so, there is something like this in EA. You will have to use API :-P
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
aRepository.CustomCommand("Repository", "SynchProfile", "Profile=PPP;Stereotype=SSS");
public static EA.Element createElement(EA.Package aParentPackage, string aElementName,
string aElementType, string [highlight]aElementStereotype[/highlight])
{
EA.Element newElement = (EA.Element)aParentPackage.Elements.AddNew(aElementName, aElementType);
newElement.Stereotype = aElementStereotype;
newElement.Update();
aParentPackage.Elements.Refresh();
return newElement;
}