- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Situation:
I have a design with local and linked components:
1|-component.name="Fred:1"
2|-component.name="Fred:2" # instance of 1
3|-component.name="Hilde:1"
4|-component.name="Fred (1):1"
5|-component.name="Fred v1:1" # linked component named Fred
6|-component.name="Fred v1:1" # another linked component with the same name
7|-component.name="Fred v1:2" # instance of 6
8|-component.name="Klaus"
9|-component.name="Klaus" sub-component.name=Fred:1
10|-component.name="Rudi"
11|-component.name="Rudi" sub-component.name=Fred:1 # instance of 1
I now want to get all component but only one component from each type and only if it does not have sub-components. So the result should be something like: 1, 3, 4, 5, 6, 9
Iterating over the list is not a problem. But is there a way to identify an object? Something like an unique id?
Solved! Go to Solution.