jeremytammik / RevitLookup

Interactive Revit RFA and RVT project database exploration tool to view and navigate BIM element parameters, properties and relationships.
http://thebuildingcoder.typepad.com
MIT License
1.03k stars 294 forks source link

ParameterBindings Not Correct #128

Closed chuongmep closed 2 years ago

chuongmep commented 2 years ago

Dear @Nice3point, I see a problem in here with ParameterBindings. May be is an issue. devenv_MUyy5yUguH Some Code Sample :

 BindingMap bindingMap = DB.Doc.ParameterBindings;
DefinitionBindingMapIterator iterator = bindingMap.ForwardIterator();
            while (iterator.MoveNext())
            {
                Definition def = iterator.Key;
                //TODO SOME THING
            }
Nice3point commented 2 years ago

I'll see when I get back from work. Apparently support is not implemented, a similar problem on versions 2020 and 2021

Nice3point commented 2 years ago

@chuongmep done изображение изображение

chuongmep commented 2 years ago

@Nice3point Awesome, Thanks you.