1
General Board / Re: Managing parallel subprocesses
« on: October 10, 2015, 01:10:50 am »
I think you're making it more complicated than you need to... start with your basic process, and see if you need to add any exceptions.
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.
for(var i = 0; i < sourceDiagramObjects.Count; i++)
{
var sourceElement as EA.DiagramObject;
sourceElement = sourceDiagramObjects.GetAt(i);
var left, right, top, bottom;
left = sourceElement.left;
right = sourceElement.right;
top = sourceElement.top;
bottom = sourceElement.bottom;
var position = "l="+left+";r="+right+";t="+top+";b="+bottom+";"
diagramObject = diagramObjects.AddNew(position, "" );
diagramObject.ElementID( sourceElement.ElementID );
diagramObject.Update();
}