Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi..
I am trying to create a collection of all MultiReferenceAnnotations like the tag with 139
With Revitlookup I found that the id of this annotation is -2000970
I tried the code below but the collection is nothing.
If I try to collect rebar tags (-2009020) like tag with 174, with the some code, work fine
Where I wrong?
Dim tagColl As List(Of Element) = New FilteredElementCollector(doc, doc.ActiveView.Id).OfCategory(-2000970).Where(Function(x) TypeOf x Is IndependentTag).ToList()
Solved! Go to Solution.