Here is an invitation to the upcoming AEC collaboration webinar and overviews over dockable panels, dialogue handling, decompilation and railing geometry:
- AEC collaboration webinar
- Dockable panels and
WebView2
- Dismissing Revit pop-ups
- Check API changes using decompilation
- Railing geometry
AEC Collaboration Webinar
Interested in AEC collaboration and coordination?
We have a one-hour live webinar on AEC Collaboration: BIM Collaborate for Project Managers coming up on July 28, 2021 at 10am PT / 1pm ET / 19:00 CET.
Take your work anywhere, see your design progress clearly and work flexibly without disruption.
Join Autodesk Technical Specialists as they guide you into workflows supported by Autodesk BIM Collaborate. Learn to use analytical tools and reports to make data driven decisions for your project, see an overview of Insight and see how AI can help keep projects on track.
Learn the power of automated clash detection of Model Coordination, how to create and manage issues for coordination and explore other tools that save time and improve change visibility in your models; no Revit skills necessary.
Our experts will cover:
- Reports
- Insight and Design Risk dashboard
- Model Coordination
- Meetings
- Change visualization tracker
Can't attend live? Register anyway and we'll send you the recording after the webinar.
Dockable Panels and WebView2
Konrad Sobon presents a very nice general introduction get started with dockable panels in his article on WebView2 and Revit’s Dockable Panel.
Unfortunately, he runs into a problem using WebView2
to host a browser in them.
Many thanks to Konrad for the nice introduction to dockable panels and subsequent problem analysis!
Jason Masters explained how he solved the conflict using named pipes to connect to a separate UI process, similar to the suggestion to achieve disentanglement and independence via IPC:
It’s so frustrating, because DLL hell was solved by Microsoft, like 15 years ago, using strong naming, but Autodesk just doesn’t support it.
Personally, I just use Electron, built my whole client application there, and just shuttle
json
data back and forth to a thin Revit wrapper over named pipes. Still, the potential for DLL conflicts with different versions ofNewtonsoft.json
remains, but thankfully its core API has stayed pretty stable and consistent.
Dismissing Revit Pop-Ups
Another article by Konrad discusses dismissing Revit pop-ups – the easy and not so easy ways and explains
- How to set up and use the
DialogBoxShowing
event for the Revit-API-style solution - Using the Win32Api
FindWindow
andGetWindowText
methods to find the right button and simulate a user click on it
Yet again many thanks to Konrad for this helpful overview!
This explanation nicely complements the existing articles in the topic group 5.32 on detecting and handling dialogues and failures.
Check API Changes using Decompilation
Comparing changes between different versions of the Revit API is possible using the free ILSpy tool (e.g., version 5.0.0.4861-preview3) to:
- Open the
RevitAPI.dll
assembly - Select the root node
- Select File > Save Code...
- Select an empty folder to save all the decompiled source code
- Create a git repo
- Save the API source code
Repeat this process with another version of RevitAPI.dll
to generate the decompiled source code, commit into the git repo to compare the different releases and the changes between them.
Railing Geometry
Some useful aspects of the tricky task of accessing railing geometry can be gleaned from these snippets of an internal discussion:
Q: How can I extract the geometry from a RailingType
element?
A: Last time I tried, the best way to get geometry was using the IModelExportContext
, but I forget whether a railing type actually has geometry one can get from API or if it's all on the railing.
There is also the Element.Geometry
property, GeometryElement
and GeometryInstance
objects that can be obtained directly, but in case of railings it could have some specific complications.
Exactly, railings have a complicated representation and I have no idea what Element.get_Geometry actually gives for a RailingType. So, I'd need to look into an example and see what they give and what's best to use.
For RailingType
elements, get_Geometry
returns null.
I then used GetDependentElements
with a filter for Railing
elements.
I can then call get_Geometry
and/or GetGeometryInstances
on the Railing
element.
Is this a valid workflow?
Also, I would like to use GetGeometryInstances
on the Railing
element, but it is returning an identity transform; so, it is not using instanced geometry?
Well, a railing has its own RailingType, so the railing being an identity transform of something does make sense regardless of where the railing is positioned.
The issue is that the railing element is instanced 600 places in the model. I thought I would be able to get the instance geometry and it's transform.
I'm confused – railings aren't instanced.
I think I answered my own question. The RailingType has a dependent Railing element. This Railing element has a GeometryInstance in its GeometryElement. I can get the geometry and its transform from this element.
That sounds right – a Railing geometrically should be small, one or a few GeometryInstances would be expected.
There is some potential difference with the continuous rails; these are separate Elements but you may see them as part of the Railing's geometry. In that case, it's also easy to encounter the continuous rails twice; in fact, Revit draws them twice, which is why you can tab select a top rail, for example, to toggle between the top rail alone and the railing which its attached to.