Re: Change the panel a connector is connected to
What is the parameter data type? Revit manages some data types in parameters that do not fit into the int, double, ElementId and string classes supported by the Revit API, and are therefore...
View ArticleRe: How to change a SturcturalConnectionHandlerType
I asked the development team for you.
View ArticleRe: Element created from solid lost material property in family document
First of all, find out how to achieve what you wish manually in the user interface. Then, use RevitLookup and other tools to explore the family document database to see how that is represented in the...
View ArticleRe: How to change a SturcturalConnectionHandlerType
Thank you for your help, otherwise i could not get any information about this topic.
View ArticleRe: Element created from solid lost material property in family document
Hi Jeremy, you cannot create a DirectShape in the user interface, so the usual way cannot be gone. Rudi
View ArticleRe: Element created from solid lost material property in family document
Hi, can you set the FreeFormElement's BuiltInParameter.MATERIAL_ID_PARAM? Revitalizer
View ArticleRe: ExternalEvent
I found this site to be exceptionally helpful when creating external event...
View ArticleGet room informations from FamilySymbol
Hello,how can i get the room informations from a FamilySymbol? With a FamilyInstance it works, but not with FamilySymbol: Thanks Daniel
View ArticleRe: Get room informations from FamilySymbol
It is because a FamilySymbol does not exist in a room. It is the top level element for a Family that holds the Types, but the FamilyInstance is what is placed in the model and therefore can have room...
View ArticleRe: 2020 Revit Object Model
Here is the link if anyone is having trouble finding the Revit Idea Board.https://forums.autodesk.com/t5/revit-ideas/2020-revit-object-relational-diagram/idi-p/9030260
View ArticleRe: Export to DWG and automaticaly bind images
So far i've done this: public static void Etrans(string desenho,string destination) { try { TransmittalFile tf; TransmittalOperation to = new TransmittalOperation(); TransmittalInfo ti =...
View ArticleRe: What is the best avenue for programming in the family editor?
Thank you Jeremy,I have created some dynamo graphs but, have run into limitations or just plain don't know how to get from here to there. I started looking at C# and will probably go this route. Will...
View ArticleRe: What is the best avenue for programming in the family editor?
I predict you will learn to love C# and .NET. Programming has come quite a way in the past few decades 🙂 Have fun!
View ArticleRe: How to change a SturcturalConnectionHandlerType
Sorry to report their answer: At this moment there is no counterpart for StructuralConnectionHandlerType inside Advance API and there is no method to edit parameters for...
View ArticleRe: Export to DWG and automaticaly bind images
To simplify matters, it ill probably be safest for you to develop your AutoCAD.NET add-in as a stand-alone app first, before trying to run it within a Revit add-in. That way, you eliminate one...
View ArticleRe: WinForms or WPF?
This is an old thread but it's still highly ranked on Google so I just wanted to chime in that I went down the WinForms path for about a year and I really regretted it. I would highly recommend that...
View ArticleCoordinate Tables
Is there a way to generate x, y, z tables from existing spline reference points in revit?
View ArticleRe: Change the panel a connector is connected to
Let me answer your questions in reverse; wrote:For many elements, the host can only be set by the constructor, when creating a new element, and not modified later. OK, for now I'll simplify the...
View ArticleRe: ExternalEvent
You cannot call ExternalEvent.Create() outside of a valid Revit API context, and a callback from a button click is most definitely not a valid context. What i do is create an instance of the...
View Article