Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to know some AnalyticalMember's properties. (for example, YZ_JUSTIFICATION)
I found that these properties are in FamilyInstance's parameters, by using RevitLookUp
Thank you Naveen and Jeremy 🙂
I can get list of AnalyticalMember by this :
AnalyticalModels = new FilteredElementCollector(RvtDoc).OfClass(typeof(AnalyticalElement)).ToElements();
And list of FamilyInstance by this :
var elements = new FilteredElementCollector(revitDoc)
.OfClass(typeof(FamilyInstance))
.WhereElementIsNotElementType()
.Cast<FamilyInstance>()
.ToList();
Now I want to get FamilyInstance from AnalyticalMember(AnalyticalElement).
I spent several hours to find relation with two data, but don't know.
Can anyone help me?
Solved! Go to Solution.