Hello,In an earlier post, I asked how to find the children of a given model item. If the model item I'm working with is a FlowChart, then the strategies given in that earlier post don't work. How can I, given a model item that contains a FlowChart activity, find the direct children of the model item? I'm not particularly interested in the order in which the child will execute, I just want a list of all the immediate children. (I'm not interested in child activities nested within an activity that is a direct child of the FlowChart activitiy).Also, I would like to get the model item representing the child activities, rather than the activities directly themselves. I think I could do something like this: Flowchart flowChart = _activeflowChartDesigner.ModelItem.GetCurrentValue() as Flowchart; if (flowChart != null) { foreach (FlowNode node in flowChart.Nodes) { FlowStep flowStep = node as FlowStep;
View Complete Post