Skip to main content
Filter by
Sorted by
Tagged with
67 votes
9 answers
160k views

I'm writing a plug-in for another program that is based on a public .NET API. Typically these plugins are made by creating a class library DLL that references the API assembly. Then a command class is ...
Eric Anastas's user avatar
  • 22.3k
17 votes
14 answers
18k views

I'm developing an add-in for another application, Autodesk Revit, which is built as a separate DLL class library. I'm trying to use the Wpf Tool Kit Property grid in one of my WPF windows. The ...
Eric Anastas's user avatar
  • 22.3k
10 votes
3 answers
5k views

A short explanation of why I want to do this: I am busy writing a plugin for Autodesk Revit Architecture 2010. Testing my plugin code is extremly cumbersome, as I have to restart Autodesk for each ...
Daren Thomas's user avatar
  • 70.8k
6 votes
3 answers
2k views

I've used RevitPythonShell and Dynamo, but would like to use my existing Python IDE (Eclipse) where I have my configuration for logging, debugging, GitHub integration, etc. I'm comfortable with ...
Marcus Jones's user avatar
6 votes
1 answer
3k views

I have a question for some of you who are familiar with the Revit API and python: I’ve been using the spring nodes package in dynamo to create a rather large series of freeform objects each in their ...
LuebkerJ's user avatar
5 votes
2 answers
3k views

I created a Revit plugin in C# that allow users totally new to 3D technology to choose a family, and insert it in their project. But right now the user does not have the choice between placing an ...
Jordi1302's user avatar
5 votes
2 answers
3k views

Let's say I want to create a cloud-based service that can connect to a Revit Server and fetch a model data, process it, and return some useful information to a user in a web-based interface. Then the ...
Thoran's user avatar
  • 9,628
4 votes
5 answers
3k views

Is it possible to create unit tests of my own Revit API code that interacts with a Revit DB model without having Revit running. If so, how might this be achieved.
sweetfa's user avatar
  • 5,901
4 votes
2 answers
5k views

I need to find an outline for many elements (>100'000 items). Target elements come from a FilteredElementCollector. As usual I'm looking for the fastest possible way. For now I tried to iterate ...
arn9000's user avatar
  • 163
4 votes
0 answers
224 views

I'm developing a Revit Plug-in. I want the MessageBox Help Button to go to a link on my website. However, no matter what path I put in the messagebox arguments, it always just defaults to the link ...
Nicholas Pisca's user avatar
4 votes
1 answer
1k views

I have a problem working with a central file model and two local files on two different machines. When I add an element on one machine, do a sync and then reload on the other machine, the API does not ...
RandomUsername's user avatar
3 votes
3 answers
1k views

Using the Revit API is there a way to get the human readable version of the BuiltInParameterGroup enumeration values (Dimensions, Materials and Finishes, etc)?
skeletank's user avatar
  • 2,918
3 votes
1 answer
2k views

So I'm just starting to dip my toes into WPF in pyRevit. I tried to implement the pyrevit.forms.WPFWindow Class like this: # -*- coding: UTF-8 -*- """ Third-Party software credits: pyRevit: ...
Kyrre's user avatar
  • 85
3 votes
2 answers
637 views

Thanks in advance for your input. I started learning Python today, because I want to define custom Python nodes in DynamoBIM (Revit) to be more flexible if there aren´t predefined / suitable nodes for ...
cheese steak jimmy's's user avatar
3 votes
1 answer
2k views

So when i get a bounding box of a door element in dynamo it gives me a bounding box including the door swing. EX: and when i get the bounding box of a door geometry it gives me the bounding box ...
Zachary Rodgers's user avatar
3 votes
1 answer
346 views

Using the Revit Python Shell, I'm trying to prompt the user to pick a room. I've been reading and implementing the method described here Revit Python Pick Object / Select Object . It works fine, but ...
Arnaud's user avatar
  • 467
3 votes
1 answer
95 views

I'm trying to get revit versions for file upload in BIM360 which are translated before 2021. We get revit version for files translated after 2021 using below link https://developer.api.autodesk.com/...
user avatar
3 votes
1 answer
248 views

I created a project from this tutorial. How may I send a huge json file by user to be read in Command.cs in Design Automation for Revit on cloud? I receive the file in DesignAutomationController.cs ...
Aditya Poddar's user avatar

1
2 3 4 5
33