Interactive Revit RFA
and RVT
project database exploration tool to view and navigate BIM element parameters, properties and relationships.
Please refer to The Building Coder for more information.
- Go to the Releases section.
- Download and run MSI file.
The installer contains all the latest versions starting from the 2015 version of Revit.
Debugging:
- Run Debug Profile in Visual Studio or Run Configuration in JetBrains Rider. The required files have been added. All project files will be automatically copied to the Revit plugins folder.
Creating a package:
- Open the terminal of your IDE.
- Install Nuke global tools
dotnet tool install Nuke.GlobalTool --global
. - Run
nuke
command. - The generated package will be in the output folder.
For more information on building, see the RevitTemplates Wiki page.
The project currently supports the 2022 version of Revit. You can find the source code of previous versions at the links below:
- latest release for Revit 2022
- 2021.0.0.13 for Revit 2021
- 2020.0.0.4 for Revit 2020
- 2019.0.0.13 for Revit 2019
- 2018.0.0.8 for Revit 2018
- 2017.0.0.24 for Revit 2017
- 2016.0.0.13 for Revit 2016
- 2015.0.0.8 for Revit 2015
Please refer to the changelog for details.
This clarification was prompted by the issue #35 – RevitLookup doesn't snoop all members:
Question: I tried snooping a selected Structural Rebar element in the active view and found not all of the Rebar class members showed up in the Snoop Objects window. One of
many members that weren't there: Rebar.GetFullGeometryForView
method.
Is this the expected behaviour? I was thinking I could get all object members just with RevitLookup and without the Revit API help file RevitAPI.chm
.
Answer: RevitLookup cannot report all properties and methods on all elements.
For instance, in the case of GetFullGeometryForView
, a view input argument is required. How is RevitLookup supposed to be able to guess what view you are interested in?
For methods requiring dynamic input that cannot be automatically determined, you can make use of more intimate interactive database exploration tools, e.g. RevitPythonShell.
Originally implemented by Jim Awe and the Revit API development team at Autodesk.
Maintained by Jeremy Tammik, The Building Coder and The 3D Web Coder, Forge Platform Development, ADN Open, Autodesk Inc., with invaluable contributions from the entire Revit add-in developer community.
Thank you, guys!
This sample is licensed under the terms of the MIT License. Please see the License file for full details.
Credit to icons8.com for the RevitLookup icons.
Thanks to JetBrains for providing licenses for Rider and dotUltimate tools, which both make open-source development a real pleasure!