Exemplo n.º 1
0
 public void CollectElements(HashSet <GraphElement> collectedElementSet, Func <GraphElement, bool> conditionFunc)
 {
     GraphView.CollectElements(containedElements, collectedElementSet, conditionFunc);
 }
Exemplo n.º 2
0
 public override void CollectElements(HashSet <GraphElement> collectedElementSet, Func <GraphElement, bool> conditionFunc)
 {
     base.CollectElements(collectedElementSet, conditionFunc);
     GraphView.CollectElements(Children().OfType <GraphElement>(), collectedElementSet, conditionFunc);
 }