Get CenteLinesCurves from rebar
Hello, I´m a newbie in this area. I´m trying to get the center lines curves from the rebar to create a detail line with the shape of the rebar. I´m cannot find the method to do this operation. Any help...
View ArticleCreate a view template
Hi, I would like to know if it is now possible to create a view template, I mean from scratch, without copying an existing one.I think it was the purpose of CF-1509 [API wish: create view template --...
View ArticleCreate new document with Workset
Hi everyone.I developed my addin using C#2012 and revit api 2016, my addin can create a new document(rvt) using my personal template (rte), The newdocument must becreatedwith anworkset. i using this...
View ArticleRe: How get filter rule info?
Hi, please see https://boostyourbim.wordpress.com/2016/05/11/filter-rule-data-where-is-it-hiding/
View ArticleRe: How get filter rule info?
HiI suggestyou downloadtheSDKREVIT2016,findtheaddinthat packageElementFilter\ViewFilters, isan excellent exampleforfilterscontains the following classesrevit:...
View Articlefind ribbon tabs and or panels and delete
I would like to find and delete a ribbon tab. I have seen some references to Autodesk.Windows, which look like they might help, but also some comments that it is not supported. Is there a problem...
View ArticleBuilding Ribbon Tabs while using Addin-Manager
I wonder if anyone else has had this kind of problem. I am using the add-in manager to help me debug Revit .net applications and commands.One of the things I am doing is adding Ribbon tab/panel/button...
View ArticleEncrypt My Family In Revit
How can i encrypt and decrypt my family through My Plug-In In Revit?
View ArticlePlumbing isometric
Is it possible to generate a plumbing isometric using Revit? It doesn't have to be to scale, just more of a schematic. If it is possible, how do I do it? I'm a novice at Revit.
View ArticleChange Revit Link Display Settings and Design Options using API
Hi,We are developing a plugin that automatically selects the Design options for all the linked models based on an external file (that external file is not even Revit, it could just be a JSON file that...
View ArticleRe: drafting view
Dear Alain, Thank you for your update, further background info and patience. The development team responded to the issue REVIT-90965 [drafting view missing in French template file?] that I raised with...
View ArticleRe: Building Ribbon Tabs while using Addin-Manager
Or GetAssembly (typeof (YourAddinClassGoesHere) )
View ArticleRe: find ribbon tabs and or panels and delete
Hi, you can make tabs invisible: private void DisableTab(string name){ foreach (Autodesk.Windows.RibbonTab tab in Autodesk.Windows.ComponentManager.Ribbon.Tabs) { if (tab.Title==name)...
View ArticleRe: find ribbon tabs and or panels and delete
Adwindows.dll is fine don't be scared to use it. There's a trick I found where you can create normal api panels or buttons and then copy them to any other tab / panel. So you should be able to achieve...
View ArticleRe: Get boundary of floors with SlabShapeEditor enabled
Using the geometry, will give all the lines in the floor. This is how i do it in the existing tool. The case of just getting the boundarys is a bit more tricky.. I will have a deeper look into it in...
View ArticleRe: Encrypt My Family In Revit
I'm sure there would be a way to do this using any old encryption library, but in order for Revit to function correctly the family would need to be stored within the project database without...
View ArticleRe: Building Ribbon Tabs while using Addin-Manager
Dear Abba, Several people have reported various solutions to debug and modify a program without restarting Revit: http://thebuildingcoder.typepad.com/blog/about-the-author.html#5.49 Please let us know...
View ArticleRe: Building Ribbon Tabs while using Addin-Manager
try using the functionality of adWindows.dll (namespace Autodesk.Windows) to find and remove the existing command button. I've not tried to delete and recreate a button with the same name before so...
View ArticleElements in assembly
Hi all I am trying to read the items inside an assembly. I have the assembly element but how do i then get all the elements assigned to the assembly. Thanks
View Article