Hi All,
I’m referring to the solution of this post by @Jeremy_Tammik
WallType X;
FilteredElementCollector allWallsOfTypeX
= new FilteredElementCollector(doc)
.OfClass(typeof(Wall))
.Where( e => e.WallType.Id.IntegerValue.Equals( X.Id.IntegerValue ) );
Is there a filter (slow or quick) that can be used to replace the last line (Linq) ?
I’ve tried using the following;
FamilyInstanceFilter(doc, Brick230Id)
but I get an error;