Jeremy Tammik

The Building Coder

Revit API Programming & BIM Development

2,080+ blog posts on the Revit API by Jeremy Tammik — developer support, training, and knowledge sharing since 2008.

About Jeremy Tammik

Jeremy is The Building Coder and The 3D Web Coder. He is a prolific author and passionate about cooperation and sharing, working with the Forge Partner Development team on Autodesk APIs and web services, providing developer support, training, conferences, presentations, and blogging on the Revit API and cloud and mobile technologies.

Jeremy joined Autodesk in 1988 as the European technology evangelist driving AutoCAD application development in Europe, the United States, Australia, and Africa. He co-founded ADGE, the AutoCAD Developer Group Europe. He left Autodesk in 1994 to work as an independent HVAC application developer and rejoined the company in 2005.

Jeremy graduated with degrees in mathematics and physics at Marburg University in Germany, worked as a teacher and translator of both computer and human languages and as a C++ programmer on early GUI and multitasking projects. He is fluent in six European languages, vegetarian, has four kids, two grandchildren, loves cooking, climbing, hiking, sports, nature, literature, music, dancing, adventure, survival, problem solving and challenges of all kinds.

Here are a totally incomplete and out-of-date CV and snapshot of what I did in 2013.

Contact, Questions and Support

Jeremy can be contacted by email and @jeremytammik, but please don't expect him to provide support.

If you have questions on Autodesk product usage, customisation or programming, please visit the appropriate Autodesk community discussion forum.

For Revit API questions, you can go straight to the dedicated Revit API discussion forum. If you prefer, you can also use the revit-api tag on Stack Overflow.

I always prefer to discuss everything I do in public and enable the entire community to contribute and share when possible.

Therefore, please avoid misusing any of the personal channels listed below for Revit API related questions:

Getting Started

Here are some suggestions on getting started with the Revit API:

First of all, before getting started, learn the Revit product from an end user point of view. Understand the optimal workflow and best practices. If you do not, the API will be hard to understand and not make much sense.

It is also useful to learn the basic of programming in general, and of the language you choose for addressing the Revit .NAT API specifically.

A good understanding of event-driven programming is very helpful, since the Revit API is entirely event driven.

Once you have that under the hood, determine an optimal end user workflow for the task that you intend to address with your add-in.

Any step that cannot be solved through the user interface can almost certainly not be automated either.

After that, it is time to start exploring the programming environment.

The Revit SDK or Software Development Kit includes API documentation and samples. You can download it from the Autodesk Revit Developer Center.

The most important piece of documentation is the Revit API help file RevitAPI.chm listing all classes, properties and methods. That information is also available online at www.revitapidocs.com.

Another very important piece of documentation is the Revit API Developers Guide included in the Revit product help.

The most effective way to get started learning and programming with the Revit API, including installation and use of the SDK, is to work through the step-by-step instructions provided by the DevTV and My First Revit Plugin video tutorials.

Next, you can dive in deeper still by working through the self-documenting ADN Revit API Training Labs. They consist of a series of hands-on lab exercises in both C# and VB.NET accompanied by detailed step-by-step training instruction documents.

If you are in a hurry and want to skip everything else, you can just check out the hello world walkthroughs in the developer guide.

The section on Add-In Integration presents detailed information on all you need to know about installing an add-in.

Here is an overview of the the rich collection of getting started material currently available:

Reproducible Test Case

The best and clearest way to describe an API problem is normally by providing a non-confidential reproducible test case including a minimal sample macro embedded in a minimal project file to run it in and detailed step-by-step instructions specifying exactly what you are trying to achieve, the behaviour you observe, the difference between the two and how to reproduce the issue to analyse it in the debugger:

The purpose of this is both to enable us to reproduce and analyse the problem and to verify that it really has been resolved.

Another even more beneficial aspect for all involved is that creating a minimal reproducible case like this often leads you to discover for yourself what you were doing wrong, and the issue becomes moot.

P.S. Here is an additional clarification on the importance of a minimal reproducible case directly from the development team for a specific case: With the new info it does indeed look as if we need to explore this issue in more depth. However, I doubt it is on the managed side. Unfortunately, even if it does not look like it, we really need a sample to reproduce. Unless the problem occurs every time no matter what geometry is and what happens to the element the face was taken from, it is practically impossible for us to test it (I mean, in a reasonable time). We do not necessarily need your code – I can write the code myself – but we need a workflow to reproduce, and the workflow needs to be quite detailed; like – create this wall, of this type and this position and length, at this level; put this specific window there at this exact location; etc. Let me put it this way: if I receive a case from our QA team and the description does not specify each click exactly to get to the point of failure, no matter how trivial the commands are, I cannot take the case and return it to the reporter. Naturally I always try my best to deduce the actual scenario, but I can only do so much. So, please, if you can give us something very detailed and specific it will benefit both of us. Thank you.

P.P.S. If your add-in is too large or complex: I would love to dive in and try to help you debug this, but I am sorry to say I do not have the time. You will have to continue exploring it yourself. All I can suggest is to keep at it. One approach to debugging a problem like this is: (i) Simplify it down to something absolutely trivial and stupid that is guaranteed to work – dumb it down. (ii) Once that is working, add the required complications one by one until it either works completely or fails. Once you have determined the exact point of failure, you can narrow that down further and create a minimal reproducible case: With the minimal reproducible case in hand, I can either take a look myself of pass it on to the Revit development team for further analysis.

P.P.P.S. In order to simplify installation and debugging for the development team, the preferred method to submit your sample code snippet is to include it as a macro embedded in a minimal RVT document.

License

Copyright (c) 2008-2026 Jeremy Tammik. All material provided by The Building Coder is licensed under the MIT License.

View full license text

Permission is hereby granted, free of charge, to any person obtaining a copy of the software published on this blog and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Disclaimer

Please note I provide no guarantee whatsoever that anything published on this blog is useful or even legal. Some of the projects discussed here make use of experimental or risky workarounds not covered by the officially supported usage recommended by Autodesk. They are by no means production-level solutions and should not be used as is for production use. If you make any use of anything here, you are doing so at your own risk.

Topic Groups

A curated collection of posts organized by subject:

5.1. Custom Exporter

5.2. 2D Booleans and Adjacent Areas

5.3. PostCommand

5.4. Dockable Panels

5.5. Material Management and Libraries

Please also note the related topic group 5.42 on Texture Bitmap and UV Coordinate Access.

5.6. Phase

5.7. Preview Control

5.8. RstLink

5.9. Retrieving Elements Using FilteredElementCollector

In addition to the discussions and samples below, a large number of additional real-world filtering examples is provided by The Building Coder samples in the module CmdCollectorPerformance.cs.

5.10. Filter for Family Symbols

5.11. Model Review

5.12. Wall Layers

Please refer to 5.17 – Wall Layers and Compound Structure.

5.13. GitHub

5.14. Moving a Cable Tray

5.15. Room Boundaries

5.16. Unit Testing

5.17. Wall Layers and Compound Structure

5.18. Room Properties

5.19. Pick Point

5.20. Visual Studio Revit Add-In Wizards

The Visual Studio Revit add-in wizards provide Visual Studio templates for generating C# and VB .NET Revit add-ins. They enable the instantaneous and automatic generation, installation and debugging of a new Revit add-in skeleton with one single click.

You can always get the most up-to-date version from the Visual Studio Revit Add-In Wizard GitHub repository.

5.21. RoomEditorApp – Room Editor Revit Add-In

Please also refer to 5.35 – Autodesk Technical Summit 2014 – a generic cloud-based round-trip real-time 2D Revit BIM editor.

5.22. Advanced Revit 2014 API Features and Samples

5.23. Extensible Storage

5.24. Control Element Colour and Material

5.25. Family API, Loading and Placing Family Instances

Families can be programmatically created, loaded and placed.

The Family API to create them is active in the RFA family context.

Family loading and instance placement works in both RVT projects and RFA family definitions.

5.25.1. Family API for Creating Family Definitions

5.25.2. Family Instance Placement

5.25.3. Loading a Family

5.26. PushButtonData Usage Examples

5.27. FamilyElementVisibility

5.28. Idling and External Events for Modeless Access and Driving Revit from Outside

5.28b Thoughts and Input on Revit I/O

Officially, you cannot currently use Revit as a server to create BIM models programmatically in a fully automated manner. However, several unofficial workarounds have been devised anyway, c.f. above, and the demarcation between driving Revit from a modeless context and using it as a server is vague.

The Autodesk Forge web services are currently being expanded to include support for RVT file read-write operations as part of the Forge Design Automation API.

5.29. ExtrusionAnalyzer

5.30. 3D Booleans, Cutting and Joining Elements

Please also refer to the topic group 5.48 – Element Intersection and Collision Detection.

5.31. Dynamic Model Updater Framework DMU

5.32. Detecting and Handling Dialogues and Dialogues

5.33. Need to Regenerate

5.34. BipChecker, the Revit Built-in Parameter Checker

5.35. Autodesk Technical Summit 2014 – A Generic Cloud-based Round-trip Real-time 2D Revit BIM Editor

Please refer to 5.21 – RoomEditorApp – Room Editor Revit Add-In, describing the initial base implementation for Autodesk Technical Summit 2013.

5.36. Source Code Colourizer

5.37. Creating and Setting Up a 3D View

5.38. Creating and Setting Up a Section View

5.39. Splitting an Element into Parts

5.40. The ADN Revit MEP HVAC and Electrical Sample AdnRme

5.41. Revit and Its API is Different

5.42. Texture Bitmap and UV Coordinate Access

5.43. Point Clouds

5.44. Creating a Floor

5.45. Creating Dimensioning

5.46. Autodesk View and Data API

5.47. Exporting Individual Element Geometry

5.48. Element Intersection and Collision Detection

Please also refer to the topic group 5.30 – 3D Booleans, Cutting and Joining Elements.

5.49. Edit and Continue, Debug without Restart, Live Development

5.50. DirectShape Element

5.51. Spatial Adjacency and Thermal Energy Analysis Model

Please also refer to the topic group 5.2 – 2D Booleans and Adjacent Areas.

5.52. The Revit API Util Classes are Often Overlooked

5.53. Handling Transactions and Transaction Groups

Please note that transaction handling is sometimes also related with the need to regenerate.

5.54. Structural Extensions, REX and Results Builder

5.55. DA4R – Design Automation for Revit

5.56. Element Identifiers in RVT, IFC, NW and Forge

All Posts

Complete chronological listing of all 2,080+ blog posts:

Nr Date Title Categories
12008-08-22Welcome   web    
22008-08-24Introduction to DevTech   web    
32008-08-26Getting Started with the Revit API   web    
42008-08-28The Revit SDK Contents   web    
52008-08-30Managing SDK Samples   web    
62008-09-02The SDK Samples Solution SDKSamples2009.sln   web    
72008-09-04Loading SDK Samples   web    
82008-09-08Debugging a Revit Add-In   web    
92008-09-11What Next?   web    
102008-09-16Selecting all Walls   web    
112008-09-18Units   web    
122008-09-22Geometry Library   web    
132008-09-24Geometry Viewers   web    
142008-09-26Wall Dimensions   web    
152008-09-29RoomsRoofs SDK Sample   web    
162008-10-01Relationship Inverter   web    
172008-10-03Filter Performance   web    
182008-10-04AU 2008   web    
192008-10-06More Filter Performance   web    
202008-10-07Filter Performance Conclusion   web    
212008-10-08SDK Update Posted   web    
222008-10-10Picking a Point   web    
232008-10-13RVT File Version   web    
242008-10-14Application Events in VB   web    
252008-10-16Element Materials   web    
262008-10-20Family Instance Materials   web    
272008-10-23Azimuth   web    
282008-10-27Converting between VB and C#, and .NET Decompilation   web    
292008-10-28Obfuscation   web    
302008-10-29Element Bounding Box   web    
312008-10-31Slab Boundary   web    
322008-11-03Model Line Creation   web    
332008-11-05Slab Side Faces   web    
342008-11-06Creating a new Family Symbol   web    
352008-11-07Loading The Building Coder Samples   web    
362008-11-10Adding a Shared Parameter to a DWG File   web    
372008-11-12Editing a Floor Profile   web    
382008-11-14Wall Compound Layers   web    
392008-11-17Wall Elevation Profile   web    
402008-11-18Visual Studio 2008   web    
412008-11-18Another Revit API Blog   web    
422008-11-19Exploring Element Parameters   web    
432008-11-21Defining a New Parameter   web    
442008-11-24RealDWG and Object Enablers   web    
452008-11-26Running AutoCAD inside Revit   web    
462008-11-28Formatting Unit Strings   web    
472008-12-01Wall Graph   web    
482008-12-02AU Begins   web    
492008-12-03Document IsModified Property   web    
502008-12-04Parameter Modification Performance   web    
512008-12-05Driving Revit from Outside   web    
522008-12-08Using Namespaces   web    
532008-12-102D Polygon Areas and Outer Loop   web    
542008-12-11Web Service   web    
552008-12-123D Polygon Areas   web    
562008-12-1364 bit Revit API Issues   web    
572008-12-15Polygon Transformation   web    
582008-12-16New Revit Applications   web    
592008-12-18PickOne   web    
602008-12-19Linked Files   web    
612008-12-20Happy Holidays   web    
622009-01-02Happy New Year 2009   web    
632009-01-05Family Category and Filtering   web    
642009-01-06Revit Serial Number   web    
652009-01-07Creating a Viewport   web    
662009-01-08F# Programming Contest   web    
672009-01-09Viewports and Sheets   web    
682009-01-12PlanTopology Class   web    
692009-01-14Hiding Linked Files   web    
702009-01-15Barcelona Questions   web    
712009-01-16Filter for Hosted Elements   web    
722009-01-17Hello F# via C#   web    
732009-01-18Transactions   web    
742009-01-19Toolbar Image List   web    
752009-01-19Transaction Responsibility   web    
762009-01-20Room and Wall Adjacency   web    
772009-01-21Database Integration   web    
782009-01-22Element Caching   web    
792009-01-22Walls and Doors on Two Levels   web    
802009-01-23AutoHotKey   web    
812009-01-24Happy New Year in the East   web    
822009-01-26Unit Types and Format Options   web    
832009-01-27Use F# Directly in Revit   web    
842009-01-28Room and Wall Adjacent Area   web    
852009-01-29Mechanical Duct Types   web    
862009-01-30Category Comparison   web    
872009-01-31Verona Revit API Training   web    
882009-02-02Revit Window Handle and Modeless Dialogues   web    
892009-02-03Creating a Group and How to Fish   web    
902009-02-04Compound Wall Layer Volumes   web    
912009-02-05Creating a Wall with a Sloped Profile   web    
922009-02-05Developer Days Online   web    
932009-02-06Converting to Filters   web    
942009-02-09Inserting a Column   web    
952009-02-10Bolt out of the Red   web    
962009-02-11Inserting a Beam   web    
972009-02-12List Railing Types   web    
982009-02-13Boolean Operations for 2D Polygons   web    
992009-02-16Locked Dimensioning   web    
1002009-02-17Utilizing Revit API Resources   web    
1012009-02-18RvtMgdDbg   web    
1022009-02-23Revit Install Path and Product GUIDs   web    
1032009-02-24Getting the Journal File Path   web    
1042009-02-25UniqueId, DWF and IFC GUID   web    
1052009-02-26Selection Questions   web    
1062009-02-27List Linked Elements   web    
1072009-03-03Create Room on Level in Phase   web    
1082009-03-04Real Break   web    
1092009-03-10Parameter Binding Performance   web    
1102009-03-17Transform   web    
1112009-03-24Transform Instance Coordinates   web    
1122009-03-27Back Again   web    
1132009-03-30More Questions   web    
1142009-03-30DevDays Online Recordings   web    
1152009-03-31Filter for a Family   web    
1162009-04-01DWF View Definition   web    
1172009-04-03Revit Structure Resources   web    
1182009-04-06Deeper Parameter Exploration   web    
1192009-04-07Revit API Cases 1   web    
1202009-04-08Getting Started with the Revit 2009 API   web    
1212009-04-09Installing the Revit 2010 SDK   web    
1222009-04-10Happy Easter   web    
1232009-04-14Add-In Keyboard Shortcut   web    
1242009-04-15Cylindrical Column   web    
1252009-04-17Create an Area   web    
1262009-04-20Access to Linked File Geometry   web    
1272009-04-21Area Boundary Segments   web    
1282009-04-22Omni Class Numbers   web    
1292009-04-24New 2010 Events   web    
1302009-04-27MEP Connectors   web    
1312009-04-29Tag Association   web    
1322009-05-01Hole in a Floor   web    
1332009-05-04Transform an Element   web    
1342009-05-06Nested Instance Geometry   web    
1352009-05-08Model Line Sketch Plane   web    
1362009-05-09Revit API Introduction Webcast   web    
1372009-05-14VB Samples and Other Questions   web    
1382009-05-16Document Modification in an Event   web    
1392009-05-18Revit 2010 Ribbon API   web    
1402009-05-20Selecting Model Elements   web    
1412009-05-22Porting the Building Coder Samples   web    
1422009-05-25Imports in Families   web    
1432009-05-30New Material   web    
1442009-05-31Revit and Dragonfly   web    
1452009-06-02Core Structural Layer   web    
1462009-06-03Host Reference   web    
1472009-06-08Adding a Shared Parameter to an RFA File   web    
1482009-06-09Add-In Ribbon Panel and Loading One Single Type   web    
1492009-06-10Creating a Slanted Column   web    
1502009-06-11Unload Family Type   web    
1512009-06-12Auto-Confirm Save Using DialogBoxShowing Event   web    
1522009-06-15Creating a Curved Beam   web    
1532009-06-16Revit Library Shape Type Catalogue Parameters   web    
1542009-06-18Rename a Group   web    
1552009-06-19Category Comparison and Model Elements Revisited   web    
1562009-06-22The Revit MEP API   web    
1572009-06-23RFA Version and Context, Grey Commands, RDB Link   web    
1582009-06-24Model Group Shared Parameter   web    
1592009-06-25Export Family Instance to gbXML   web    
1602009-06-26Convex Hull and Volume Computation   web    
1612009-06-29Volume Computation Enable   web    
1622009-06-30RVT and RFA Thumbnail Image   web    
1632009-07-01Language Integrated Query Linq   web    
1642009-07-02Three Coding and Performance Hints   web    
1652009-07-03Prompt the User for Pinning and IFC Export   web    
1662009-07-04Get and Set Family Category and Parameters   web    
1672009-07-06DWG and DWF Family Creation   web    
1682009-07-07Revit 2010 Web Update 1   web    
1692009-07-08Space Adjacency   web    
1702009-07-08Mirror an Element   web    
1712009-07-09View Sketch Plane   web    
1722009-07-10Retrieving Newly Created Elements   web    
1732009-07-10Harvard Energy Model Survey   web    
1742009-07-13Journal File Replay   web    
1752009-07-14External Command Replay   web    
1762009-07-15Think Big in Revit   web    
1772009-07-16API Wishlist Survey   web    
1782009-07-16Language Independent Category Access   web    
1792009-07-17Revit Form Creation API   web    
1802009-07-20NewLineLoad   web    
1812009-07-21Practical Notes on Impractical Things   web    
1822009-07-21Revit Boot Camp on Mac   web    
1832009-07-22Scale a Curve   web    
1842009-07-22Revit Family API Webcast   web    
1852009-07-24Store Structured Data   web    
1862009-07-27Debug Geometric Form Creation   web    
1872009-07-27Integration with a Database or ERP System   web    
1882009-07-28A .NET Language Learning Resource   web    
1892009-07-29Porting from C# to VB.NET   web    
1902009-07-29API Wish List Survey Reminder   web    
1912009-07-31Store Project Data   web    
1922009-08-03Online Revit Help   web    
1932009-08-03Free gbXML Webcast   web    
1942009-08-03Default Family Template Path   web    
1952009-08-04Service-Oriented Architecture   web    
1962009-08-05Unit Conversion   web    
1972009-08-06Online Revit API Help   web    
1982009-08-07Roof Eave Cut in AutoCAD Architecture and Revit   web    
1992009-08-10The Revit Family API   web    
2002009-08-12Electrical Settings and Lighting Fixtures   web    
2012009-08-13DWG Export Filename   web    
2022009-08-14MEP Sample Ribbon Panel   web    
2032009-08-17Bottom Face of a Wall   web    
2042009-08-18Fixing RvtMgdDbg for MEP Connectors   web    
2052009-08-19Deleting a Shared Parameter   web    
2062009-08-21Library Paths   web    
2072009-08-22Happy Building Coder Birthday   web    
2082009-08-24Shared Parameter Visibility   web    
2092009-08-25Autodesk Search Beta   web    
2102009-08-25Revit MEP API Webcast   web    
2112009-08-26New Sweep and References   web    
2122009-08-28Obfuscation Tools   web    
2132009-08-31Creating a Non-rectangular Slab   web    
2142009-09-02Detail Lines   web    
2152009-09-04Elevation and Section Views   web    
2162009-09-07Remove all Geometry from a Family   web    
2172009-09-09Duplicate Family Solids   web    
2182009-09-11Room Boundary Location   web    
2192009-09-14The Revit MEP API   web    
2202009-09-16Door Marks   web    
2212009-09-18Adding a Category to a Parameter Binding   web    
2222009-09-22Getting Started with the Revit 2010 API   web    
2232009-09-24Revit Install Location   web    
2242009-09-28Document Elements   web    
2252009-09-29Display Strings and Enumerations   web    
2262009-10-01Unit Suffix and the ProjectUnit SDK Sample   web    
2272009-10-05DUT versus UST   web    
2282009-10-07Revit 2010 Web Update 2   web    
2292009-10-09Dismiss Dialogue using Windows API   web    
2302009-10-12Unrotate North   web    
2312009-10-14Analytical Support Tolerance   web    
2322009-10-15Namespaces   web    
2332009-10-19Modeless Pressure Drop Tool   web    
2342009-10-21System Versus User Family Category   web    
2352009-10-23AU 2009   web    
2362009-10-26Revit 2010 Subscription Pack   web    
2372009-10-28Revit Family Creation API Labs   web    
2382009-10-29RvtMgdDbg for Revit 2010   web    
2392009-10-30Revit API Forums   web    
2402009-11-02Adding a Column to RDBLink Export   web    
2412009-11-04Model Review   web    
2422009-11-05Autodesk University Extension   web    
2432009-11-05Product Support Subscription Videos   web    
2442009-11-06Ribbon Embed Image   web    
2452009-11-09Family Parameter Value   web    
2462009-11-11Room Occupancy   web    
2472009-11-13Title Block of Sheet   web    
2482009-11-16Extract Part Atoms   web    
2492009-11-18Revit API Flavours   web    
2502009-11-20Nested Family   web    
2512009-11-23Change Family Parameter Value   web    
2522009-11-23New Project Document   web    
2532009-11-24Solid Material   web    
2542009-11-25Select Model Elements 2   web    
2552009-11-28Visible Elements   web    
2562009-11-29AU Virtual free for ADN Members   web    
2572009-11-29Handle Category Name Change   web    
2582009-12-01AU Begins   web    
2592009-12-02Crop 3D View to Room   web    
2602009-12-03AU and Automated Testing   web    
2612009-12-04AU Winds Down   web    
2622009-12-07Distinguish Different Dimension Types   web    
2632009-12-08Updated DevTV Introduction to Revit Programming   web    
2642009-12-09Modify the DWF Export Filename   web    
2652009-12-10AU is not done yet   web    
2662009-12-11Modeless Dialogues in Revit   web    
2672009-12-14Parameter Filter Units   web    
2682009-12-16Custom Ribbon Tab   web    
2692009-12-18Vertical Projection of Beam Analytical Model   web    
2702009-12-21Create a Real Revit Ribbon Tab   web    
2712009-12-22Revit Python Shell   web    
2722009-12-23UK Electrical Schedule Sample   web    
2732009-12-24RayTraceBounce Pool Table   web    
2742010-01-07Happy New Year 2010   web    
2752010-01-07Analyse Building Geometry   web    
2762010-01-07Custom Ribbon Tab Context Switch   web    
2772010-01-07gbXML Webcast   web    
2782010-01-08Geometry Options   web    
2792010-01-11Curve Parameterisation   web    
2802010-01-12Import LandXML Surface   web    
2812010-01-13South Facing Walls   web    
2822010-01-14Model and Detail Curve Colour   web    
2832010-01-15Curves   web    
2842010-01-16DevLabs and Training   web    
2852010-01-18Rectangular Duct Corners   web    
2862010-01-19Faces   web    
2872010-01-20Retrieving Project Parameters   web    
2882010-01-21Face Edges   web    
2892010-01-22Insert Face-Hosted Sprinkler   web    
2902010-01-25Transformations   web    
2912010-01-26Extra Transaction Required   web    
2922010-01-27Project Location   web    
2932010-01-28Spot Elevation Creation on Top of Beam   web    
2942010-01-29FindReferencesByDirection   web    
2952010-02-01Find an Element in an Area   web    
2962010-02-02Material Quantity Extraction   web    
2972010-02-04Creating a Dimension Label   web    
2982010-02-05Retrieving Column and Stair Geometry   web    
2992010-02-06Kean on Reflector   web    
3002010-02-08Nested Family Instance   web    
3012010-02-10Detail Curve on Level   web    
3022010-02-12IFamilyLoadOptions and GEMini   web    
3032010-02-15GetPolygon Extension Methods   web    
3042010-02-16Export 3D View to 2D DWF   web    
3052010-02-18Wall Solid versus Face Materials   web    
3062010-02-23Texture Data UV Coordinates and FBX   web    
3072010-02-24Unmodified Element Geometry   web    
3082010-02-25Revit API Resources   web    
3092010-03-01NewEllipse Parameters   web    
3102010-03-02Reload an Add-In to Debug   web    
3112010-03-03Ensure Valid Material is Set   web    
3122010-03-04Connector Orientation   web    
3132010-03-05Nested Family Utility Methods   web    
3142010-03-08Object Relationships   web    
3152010-03-10NewWall with Opening   web    
3162010-03-11Dynamically Load and Debug Plug-ins   web    
3172010-03-12AddInManager   web    
3182010-03-16Access Extrusions in a Family   web    
3192010-03-17Object Relationships in VB   web    
3202010-03-18NewSweptBlend   web    
3212010-03-19MEP Hangers   web    
3222010-03-20Family Problems Missing Components   web    
3232010-03-22Duplicate Mark Values   web    
3242010-03-23Using Process.Start to Open a Project or Family   web    
3252010-03-24Revit API Resource and Getting Started Guide   web    
3262010-03-25Revit 2011 is Coming   web    
3272010-03-26API Wish List Survey Results   web    
3282010-03-27Adding Non-Commands to the Revit Ribbon   web    
3292010-03-28DevCamp, Devlabs and Updated API Training Schedule   web    
3302010-03-29Porting the Building Coder Samples to Revit 2011   web    
3312010-03-30Revit 2011 Product GUIDs   web    
3322010-03-31Performance Profiling   web    
3332010-04-01Collector Benchmark   web    
3342010-04-06Anonymous Methods in VB   web    
3352010-04-07RevitLookup and TextNote Alignment   web    
3362010-04-08RevitAddInUtility   web    
3372010-04-09Beam Requires Curve   web    
3382010-04-12User Visible Enumeration Value Labels   web    
3392010-04-13ElementId Parameter Value   web    
3402010-04-14Element Level Events   web    
3412010-04-14Public Revit 2011 SDK Posting   web    
3422010-04-14Debugging with Visual Studio 2010 and RvtSamples   web    
3432010-04-15XYZ Immutable   web    
3442010-04-16Retrieving Newly Created Elements in Revit 2011   web    
3452010-04-19Manual Regeneration Option Danger   web    
3462010-04-20Retrieve Stairs on Level   web    
3472010-04-20Revit 2011 API Webcast   web    
3482010-04-21Regeneration Option Best Practices   web    
3492010-04-22Plug-In Migration Steps   web    
3502010-04-23Failure API   web    
3512010-04-24Matt Mason's API News   web    
3522010-04-26Idling Event   web    
3532010-04-27Asynchronous API Calls and Idling   web    
3542010-04-29Add-In Manifest and Guidize   web    
3552010-04-30Filter for Views and the IsTemplate Predicate   web    
3562010-05-03Detail Curve Must be in Plane   web    
3572010-05-04AutoJoinElements   web    
3582010-05-05Detail Curve Must Indeed lie in Plane   web    
3592010-05-06Get Type Id and Preview Image   web    
3602010-05-07Pipe to Conduit Converter   web    
3612010-05-10API Wishlist Survey   web    
3622010-05-11The Revit MEP 2011 API   web    
3632010-05-12The Revit Structure 2011 API   web    
3642010-05-13Pre-, Post- and Pick Select   web    
3652010-05-14Solar Radiation Technology Preview   web    
3662010-05-17Cable Tray Orientation and Fittings   web    
3672010-05-18Categories   web    
3682010-05-18Voting Open for AU 2010 Sessions   web    
3692010-05-19RevitAddInUtility for 32 and 64 Bit Systems   web    
3702010-05-20RevitLookup Update   web    
3712010-05-21Determine Sheet Size   web    
3722010-05-22Parameter Access and Scheduling   web    
3732010-05-24Add-In Visibility Mode   web    
3742010-05-26Curtain Wall Geometry   web    
3752010-05-27Model Curve Creator   web    
3762010-05-30API Wish List Survey Reminder   web    
3772010-05-31Duplicate Legend Component   web    
3782010-06-01Add-In Applications for Multiple Revit Products   web    
3792010-06-03Grabbing an Internet Webcam Image   web    
3802010-06-04Display Webcam Image on Building Element Face   web    
3812010-06-05Highlight Elements   web    
3822010-06-06Voltage Units   web    
3832010-06-07Parameter Filter   web    
3842010-06-07Element Name Parameter Filter Correction   web    
3852010-06-08DevCamp Session on What's New   web    
3862010-06-09MEP System Creation   web    
3872010-06-10Hashing and DevLabs   web    
3882010-06-10To Regenerate or Not to Regenerate...   web    
3892010-06-11DevLab and Birthday   web    
3902010-06-11ClientId Versus AddInId   web    
3912010-06-14Open Revit OLE Storage   web    
3922010-06-15Export Data to XML   web    
3932010-06-16TextNote Rotation   web    
3942010-06-17Revit API Introduction Webcast Recording   web    
3952010-06-18Set Tag Type   web    
3962010-06-21IFC GUID Algorithm in C#   web    
3972010-06-22Do Not Filter For All Elements   web    
3982010-06-23Retrieve MEP Elements and Connectors   web    
3992010-06-24Intersection Between Elements   web    
4002010-06-25Revit Parent Window   web    
4012010-06-28YouTube ADN Partner Channel   web    
4022010-06-29Place Family Instance   web    
4032010-06-30Revit 2011 Web Update 1   web    
4042010-07-01Retrieve Structural Elements   web    
4052010-07-05Populating a Data Grid View   web    
4062010-07-08IFC Import and Conversion Journal Script   web    
4072010-07-13Modeless Loose Connectors   web    
4082010-07-15API Training and AEC DevCamp Material   web    
4092010-07-16Shared Type Parameter   web    
4102010-07-19Change Element Type   web    
4112010-07-20Visual Studio 2010 and the .NET Framework   web    
4122010-07-21Beam Maker Using a Void Extrusion to Cut   web    
4132010-07-23Family Element Visibility   web    
4142010-07-24Ribbon Tab Context Toggle   web    
4152010-07-26DevTV Add-In Templates   web    
4162010-07-28Debugging in Visual Studio 2010 Express   web    
4172010-07-29Linq Methods and Visual Studio Tips   web    
4182010-08-01Structural Dynamic Model Update Sample   web    
4192010-08-03Transaction Migration Errors   web    
4202010-08-05DWG and DXF Export Xdata Specification   web    
4212010-08-06Get Element Type   web    
4222010-08-09Edit Wall Length   web    
4232010-08-10ElementParameterFilter with a Shared Parameter   web    
4242010-08-11Surface Triangulation Tool   web    
4252010-08-12Leaving Ko Tao   web    
4262010-08-14Filtering for a Non-Native Class   web    
4272010-08-15Queen's Birthday Fireworks in Pattaya   web    
4282010-08-16Flex Duct Start Tangent   web    
4292010-08-18Editing Elements inside Groups   web    
4302010-08-23Suppress Unwanted Dialogue   web    
4312010-08-25Add New Materials from List   web    
4322010-08-26Slope is Slope, Not Radians   web    
4332010-08-27Setting a Locked Parameter   web    
4342010-08-30Network Access to Add-In Manifest and Icons   web    
4352010-08-31Modeless Form and Shared Parameter Disappearance   web    
4362010-09-01AU 2010 Classes   web    
4372010-09-04Simulating a Ribbon Textbox Label   web    
4382010-09-07Ribbon Icon Resolution   web    
4392010-09-08Immutable PointLoad Force   web    
4402010-09-10Adding a Rebar inside a Rebar Cover   web    
4412010-09-13Speed Up Selection   web    
4422010-09-14Access to Curtain Grid Panels   web    
4432010-09-16Selection Watcher Using Idling Event   web    
4442010-09-20AutoCAD 2010 DWG Export   web    
4452010-09-22View Location on Sheet   web    
4462010-09-24Filter for View and Phase   web    
4472010-09-27DoorSwing Fix   web    
4482010-09-28Extract Part Atom Revisited   web    
4492010-09-29Revit 2011 Web Update 2   web    
4502010-10-03Place Detail Instance   web    
4512010-10-04Revit 2011 DevTV   web    
4522010-10-05Subscription Release and Updated SDK   web    
4532010-10-06Selecting Model Elements   web    
4542010-10-06Model Elements Revisited   web    
4552010-10-10Revit AppStore   web    
4562010-10-11Closing the Active Document and Why Not To   web    
4572010-10-12Cairo and Free .NET Books   web    
4582010-10-14Model Review for Standards Compliance   web    
4592010-10-18C++ Revit Add-In   web    
4602010-10-19Power to the User (and Application)   web    
4612010-10-21MeasurePanelArea Update   web    
4622010-10-22Plane Normal and Points on Plane   web    
4632010-10-25Filtered Element Collectors   web    
4642010-10-26Level Filter Benchmark   web    
4652010-10-27Access Deleted Element   web    
4662010-10-28RevitToday Add-Ins Import and Export Coordinates   web    
4672010-11-01Refresh Referencing Sheet Parameter Display   web    
4682010-11-02Creating a Solid   web    
4692010-11-03Bienvenue à StructureBIM   web    
4702010-11-04NewBlend Sample   web    
4712010-11-05Place Site Component   web    
4722010-11-08Blends, Hermite Splines and Derivatives   web    
4732010-11-10Unit Testing in Revit   web    
4742010-11-10Setting Text Width Requires Regen   web    
4752010-11-11Place Furniture Instance   web    
4762010-11-12Purge Unused Text Note Types   web    
4772010-11-15Read DWG Settings and Content Location from INI File   web    
4782010-11-16Autodesk University 2010 Class Materials   web    
4792010-11-17Launching a Revit Command   web    
4802010-11-18Complexity versus Constructability   web    
4812010-11-19Autodesk Project Vasari   web    
4822010-11-22Connector Direction and CreateAirHandler Sample   web    
4832010-11-23Project Vasari API   web    
4842010-11-24Failure API Take Two   web    
4852010-11-24C# and .NET Little Wonders   web    
4862010-11-25Ray Tracing to Place Family Instance   web    
4872010-11-28Pattern for Semi-Asynchronous Idling API Access   web    
4882010-11-29Mirroring in a New Family and Changing Active View   web    
4892010-11-30Access to Sketch and Sketch Plane   web    
4902010-12-01The Revit API Track at AU 2010   web    
4912010-12-03Point in Polygon Containment Algorithm   web    
4922010-12-04Primary Design Option   web    
4932010-12-06XML Family Usage Report   web    
4942010-12-07Find Intersecting Elements   web    
4952010-12-08Flatten a Non-Planar Extrusion Profile   web    
4962010-12-08Russian Add-ins for Revit   web    
4972010-12-09More Kevin Filtering Benchmarks   web    
4982010-12-10Snow and Woe with Manifest Files   web    
4992010-12-13Filtered Element Collector Sample Overview   web    
5002010-12-13Pointless 500th Post with Candles   web    
5012010-12-15VSTA to Stay and Updater to Go   web    
5022010-12-17Birthdays and Gaps in Shells   web    
5032010-12-19More Snow Woe   web    
5042010-12-21Modeless Door Lister and Deleter   web    
5052010-12-23Sheet Manager and Copy Parameters   web    
5062010-12-24Merry Christmas and a Happy New Year!   web    
5072011-01-05Happy New Year, Ribbon Spying and UI Automation   web    
5082011-01-06Finding Connected Structural Elements   web    
5092011-01-07Modeless Door Lister Flaws   web    
5102011-01-08Optimisation using Robot Structural Analysis API   web    
5112011-01-0984 Second Product Support Overview   web    
5122011-01-10Language Independent Subcategory Creation   web    
5132011-01-11Type Filter Benchmark Update   web    
5142011-01-12Subscribing to UI Automation Events   web    
5152011-01-13Access to Shared Family Parameter GUID   web    
5162011-01-14BIM Apps, Project Galileo, and Piotr's Plug-In   web    
5172011-01-17Further Ideas for Using UI Automation and Galileo   web    
5182011-01-18Create a Navisworks File from Revit   web    
5192011-01-19Setting Duct Width and Height Requires Regeneration   web    
5202011-01-20Joined Beam Geometry Access   web    
5212011-01-21Using Vault with Revit   web    
5222011-01-22Managed Windows API   web    
5232011-01-24Automate DesignOption and 64 Bit Add-In Templates   web    
5242011-01-25NewFamilyInstance Overloads   web    
5252011-01-26Family Instance Missing Level Property   web    
5262011-01-27Unit Conversion and New Blogs   web    
5272011-01-28Material Assets and FBX   web    
5282011-01-31Family Instance Z Coordinate Lost   web    
5292011-02-01Use of NewTakeOffFitting on a Duct   web    
5302011-02-02Phase Dependent Room Properties   web    
5312011-02-03Command and Conquer When Switching Views   web    
5322011-02-04System Family Creation   web    
5332011-02-07Iterating Over an Unordered Set Property   web    
5342011-02-09Status Bar Text   web    
5352011-02-10Set Elbow Fitting Type   web    
5362011-02-15Create a Pipe Cap   web    
5372011-02-16Explode a DWG   web    
5382011-02-18Enable Ribbon Items in Zero Document State   web    
5392011-02-21Dimension Walls by Iterating Faces   web    
5402011-02-23Dimension Walls using FindReferencesByDirection   web    
5412011-02-24External Application Attributes   web    
5422011-02-25Pimp my AutoCAD or Revit Ribbon   web    
5432011-02-26Family API Labs for Revit 2011   web    
5442011-02-28Comparing Element Id for Equality   web    
5452011-03-01Structural Analysis Links to Revit Structure   web    
5462011-03-02The FaceWall Class and Slanted Walls   web    
5472011-03-02Room Renumbering Plugin of the Month   web    
5482011-03-03Unreliable Room Properties   web    
5492011-03-08Converting Between 2D UV and 3D XYZ Coordinates   web    
5502011-03-09Ribbon Panel Title Conflict   web    
5512011-03-10Reducing Revit Debug Verbosity   web    
5522011-03-11Application Versus Command Event   web    
5532011-03-14Internal Imperial Units   web    
5542011-03-15Distinguishing MEP Element Shape   web    
5552011-03-16Handling DPI Scaling in .NET Application Forms   web    
5562011-03-18Toposurface Interior and Boundary Points   web    
5572011-03-19Khan Academy   web    
5582011-03-21Curve.Intersect Return Values   web    
5592011-03-23Slanted Column Cross Section Rotation   web    
5602011-03-24Revit 2012 API Features   web    
5612011-03-29Change Element Colour   web    
5622011-03-30Many Issues Resolved   web    
5632011-03-31ASHRAE Viewer Plugin of the Month   web    
5642011-04-01Use of NewTakeOffFitting on a Pipe   web    
5652011-04-04Nested Lighting Fixture Instances   web    
5662011-04-06Ritchie's Revit API Introduction   web    
5672011-04-08Extensible Storage   web    
5682011-04-11Performant Hardware   web    
5692011-04-12Visual Studio Add-In Wizards for Revit 2012   web    
5702011-04-14The REX SDK   web    
5712011-04-15Product GUIDs for Revit 2012 and Forever More   web    
5722011-04-18DevDays 2010 Online with Revit 2012 API News   web    
5732011-04-19Revit 2012 WikiHelp Overview   web    
5742011-04-20Migrating the Building Coder Samples to Revit 2012   web    
5752011-04-21Updated SDK, 2012 Products, and Source Code Colourisation   web    
5762011-05-02Iteration and Springtime – Change is the Only Constant   web    
5772011-05-03Cascaded Events and Renaming the Active Document   web    
5782011-05-06Improved MEP Element Shape and Mount Ararat   web    
5792011-05-10Set Preview Image   web    
5802011-05-12Revit 2012 API Webcast   web    
5812011-05-16New Room Computation Parameters   web    
5822011-05-18Wiki API Help, View Event and Structural Material Type   web    
5832011-05-19List Linked Files and TransmissionData   web    
5842011-05-20API Wishlist Survey   web    
5852011-05-23My First Revit Plug-in   web    
5862011-05-25Loading Only Selected Family Types   web    
5872011-05-27Extensible Storage of a Map   web    
5882011-05-30Debugging an Add-in Without Restarting Revit   web    
5892011-05-31Chinese Revit 2012 API Webcast   web    
5902011-06-01File Upgrader Plugin of the Month   web    
5912011-06-02Set the Visual Style of a View   web    
5922011-06-06Subscription Packs   web    
5932011-06-07API Wish List Survey Reminder   web    
5942011-06-08The Revit MEP 2012 API   web    
5952011-06-10Placing a Line Based Detail Item Instance   web    
5962011-06-13Creating and Inserting an Extrusion Family   web    
5972011-06-14Reloading a Family   web    
5982011-06-15Revit STL Exporter Released as Open Source   web    
5992011-06-16Implicit Line Continuation in VB 2010   web    
6002011-06-20Boolean Operations and InstanceVoidCutUtils   web    
6012011-06-21Extensions for Revit 2012   web    
6022011-06-22The Revit Structure 2012 API   web    
6032011-06-23No Multithreading in Revit   web    
6042011-06-27Extensible Storage Features   web    
6052011-06-28Get Transformed Family Instance Geometry   web    
6062011-06-29Updated SDK for Revit 2012 Update Release 1   web    
6072011-06-30Modifying Cable Tray Shape   web    
6082011-07-01Basic Parametric Cube Family Tutorial   web    
6092011-07-04MEP Placeholders   web    
6102011-07-05Text Size   web    
6112011-07-06Refresh Element Graphics Display   web    
6122011-07-07Section View Creation   web    
6132011-07-12ImportExport Update   web    
6142011-07-13Point Cloud Snap and Freeze   web    
6152011-07-15VendorId, DevTV, and My First Plugin   web    
6162011-07-18Create Gable Wall   web    
6172011-07-19Python Shell in Revit and Vasari   web    
6182011-07-20Translate Revit Tooltips   web    
6192011-07-21Retrieve Railing Elements   web    
6202011-07-25Top Faces of Sloped Wall   web    
6212011-07-26Linked Element Geometry Access   web    
6222011-07-27Revit API Training Material   web    
6232011-07-28Revit API Training Preparation   web    
6242011-08-04Associative Section View Fix   web    
6252011-08-05PickObject Requires Valid View   web    
6262011-08-08Built-in Parameter Name and LabelUtils   web    
6272011-08-10MEP Sample Code for Revit 2012   web    
6282011-08-11Polylines in Imported DWG Files   web    
6292011-08-12Set Underlay Display Property to None   web    
6302011-08-15View Discipline Enumeration Values   web    
6312011-08-16Retrieving Materials   web    
6322011-08-17Section View Geometry   web    
6332011-08-18Reference to Analytical Curve   web    
6342011-08-19Set Copy Local to False   web    
6352011-08-22Wall Joins and Geometry   web    
6362011-08-23Retrieving Lines Within a Family Instance   web    
6372011-08-24Visual Studio, C# and VB Express   web    
6382011-08-25Locking the Add-Ins Ribbon Tab   web    
6392011-08-26Modeless Loose Connector Navigator Update   web    
6402011-08-29Changing the Type of Many Instances   web    
6412011-08-31Floor Creation   web    
6422011-09-01Autodesk Lab Projects Spark and Storm   web    
6432011-09-02TransTips ADN Plugin of the Month   web    
6442011-09-05Bevelled Steel Beams   web    
6452011-09-06Deleting a Group   web    
6462011-09-07TextNote Lost in Space?   web    
6472011-09-08FilledRegion Coordinates   web    
6482011-09-12Modeless Forms in Revit   web    
6492011-09-13Revit IFC Exporter Released as Open Source   web    
6502011-09-14Transfer Project Standards   web    
6512011-09-16Revit and AEC API Classes at Autodesk University   web    
6522011-09-19Yet Another Modeless Update   web    
6532011-09-22Activate a 3D View   web    
6542011-09-23Analytical Model IsEnabled Method and Parameter   web    
6552011-09-26Python Shell for Revit 2012 and Vasari 2.1   web    
6562011-09-28Unofficial Parameters and BipChecker   web    
6572011-09-29Spiderinnet   web    
6582011-09-30Exception on Copied Geometry   web    
6592011-10-03Using the WriteTransmissionData Method   web    
6602011-10-04Reloading a Family Again   web    
6612011-10-05Getting Started with the Revit 2012 API   web    
6622011-10-07Product and Add-In Wizard Updates   web    
6632011-10-11Set New Pipe Type Properties   web    
6642011-10-12Families Guide   web    
6652011-10-14Retrieving Duct and Pipe Endpoints   web    
6662011-10-17Retrieving Detailed Wall Layer Geometry   web    
6672011-10-27String Search ADN Plugin of the Month   web    
6682011-10-31Revit Add-in File Load Exception   web    
6692011-11-01Loading an Add-in With a Journal File   web    
6702011-11-03Lock the Model, e.g. Prevent Deletion   web    
6712011-11-07Planar Face Transform   web    
6722011-11-09Pick Corners and Create Floor   web    
6732011-11-10Undocumented ElementId Relationships   web    
6742011-11-11Editing a Group Take Two   web    
6752011-11-14Set Family Parameter Requires Type   web    
6762011-11-15Revit API Developer Guide on Autodesk WikiHelp   web    
6772011-11-17Revit Server REST API   web    
6782011-11-18Read-only Workset API   web    
6792011-11-21Access Central File TransmissionData on Revit Server   web    
6802011-11-22Intermediate API Update Releases   web    
6812011-11-23AU Virtual and Collaborative Translation   web    
6822011-11-24Accessing Room Data   web    
6832011-11-25My First Revit Plug-in in VB   web    
6842011-11-26Project Structure Generator on Autodesk Labs   web    
6852011-11-28AU Begins and Point Cloud Overview   web    
6862011-11-29Pick a Point in 3D   web    
6872011-11-30AU Day Two   web    
6882011-12-05Unit Conversion and Display String Formatting   web    
6892011-12-06Export Solid to ACIS   web    
6902011-12-08Interior Side of a Wall   web    
6912011-12-10REX Content Generator   web    
6922011-12-12Top Faces of Sloped Wall Update   web    
6932011-12-13Copy a Model from a Revit Server   web    
6942011-12-14AVF Displays Intersections and Highlights Rooms   web    
6952011-12-16Loading an Inventor ADSK Component   web    
6962011-12-19Finding a Development Partner   web    
6972011-12-21Keep Dialogues Modal!   web    
6982012-01-02Export Walls and Floors to SAT   web    
6992012-01-04Opening Geometry   web    
7002012-01-06Materials Collection and Filtering   web    
7012012-01-09Identifying Wall Compound Layers and Parts   web    
7022012-01-11Avoid Idling   web    
7032012-01-12Preparing for a Hands-on Revit API Training   web    
7042012-01-13Timer Code for Benchmarking   web    
7052012-01-16Drag and Drop to Revit   web    
7062012-01-18The Genesis of Revit and its API   web    
7072012-01-20Curved Analytical Model Approximation and Etabs Link   web    
7082012-01-23Point Cloud Unit Conversion   web    
7092012-01-24Point Cloud Feature Extraction   web    
7102012-01-25Synchronize with Central   web    
7112012-01-26Chinese New Year Impressions   web    
7122012-01-27The Performance Adviser API   web    
7132012-01-30Eliminating Compiler Warnings and Deprecated Calls   web    
7142012-01-31No Revit API Class Diagram   web    
7152012-02-02Section View Geometry Not Cropped   web    
7162012-02-03Level Generator ADN Plugin of the Month   web    
7172012-02-06Element in View Crop Box Predicate   web    
7182012-02-08Revit Webcam 2012   web    
7192012-02-10Add Reference Points and Markers Read from CSV File   web    
7202012-02-13Access Wire Sizes   web    
7212012-02-14AEC DevCamp Coming Up Again   web    
7222012-02-20Remove Imported JPG and BMP Images   web    
7232012-02-22BIM versus Free Geometry and Product Training   web    
7242012-02-24Hosting a Light Fitting on a Reference Plane   web    
7252012-02-28Family Instance Room Phase   web    
7262012-02-29Build Your Own Document Changed Event   web    
7272012-03-02Updating the Wall Compound Layer Structure   web    
7282012-03-05Remove DWF Links   web    
7292012-03-07A TXT File may be a Type List   web    
7302012-03-09Rotate True North   web    
7312012-03-12Mixed Mode C++ in Revit 2012   web    
7322012-03-13Split a Duct or Pipe   web    
7332012-03-14Connecting Pieces, Like Navisworks   web    
7342012-03-16Retrieve Geometry in Element Coordinate System   web    
7352012-03-19Determine Revit Demo Mode   web    
7362012-03-20Melbourne Day One   web    
7372012-03-21Melbourne Day Two   web    
7382012-03-23Melbourne DevLab   web    
7392012-03-26Great Ocean Road and Creating Your Own Key   web    
7402012-03-28Revit 2013 and its API   web    
7412012-03-29On Creating a Mass from 3D Points   web    
7422012-03-30New Revit 2013 SDK Samples   web    
7432012-04-02Idling Enhancements and External Events   web    
7442012-04-04Migrating VSTA Macros to SharpDevelop   web    
7452012-04-05GetElement method and Get Element Type   web    
7462012-04-11DevCamp and Refresh Display for a Kinetic Facade   web    
7472012-04-13Revit 2013 Product GUIDs and GUID Algorithm   web    
7482012-04-16Drag and Drop API   web    
7492012-04-17Add-In Wizard for Revit 2013   web    
7502012-04-18Scope and Dispose of Transactions   web    
7512012-04-20Migrate Building Coder Samples to Revit 2013   web    
7522012-04-23Failure Rollback   web    
7532012-04-24Using Using Automagically Disposes and Rolls Back   web    
7542012-04-25Adding a Category to a Shared Parameter Binding   web    
7552012-04-26Munich API Training   web    
7562012-04-27Xtra ADN Revit 2013 API Training Labs   web    
7572012-04-30Developer Center and SDK Update   web    
7582012-05-01Edit Family Requires No Transaction   web    
7592012-05-02DevDays Online on What's New in Revit 2013   web    
7602012-05-03Read-only and Automatic Transaction Modes   web    
7612012-05-07The Schedule API and Access to Schedule Data   web    
7622012-05-08The Revit 2013 MEP API and External Services   web    
7632012-05-09The ADN MEP Sample AdnRme for Revit MEP 2013   web    
7642012-05-10Create a Pipe Cap   web    
7652012-05-14DevBlog, DevCamp, Element and Project Wide Data   web    
7662012-05-16Selecting a Face in a Linked File   web    
7672012-05-16Revit API Webcast Tomorrow   web    
7682012-05-17Prompt User to Avoid Modeless Interaction   web    
7692012-05-20Revit and Navisworks API Wishlist Surveys   web    
7702012-05-21Family Usage Filtered Element Collector Performance   web    
7712012-05-22Change Section View Type and Hide Cut Line   web    
7722012-05-24Pipe Insulation and Insulation Material   web    
7732012-05-28Connector Orientation   web    
7742012-05-30Family Instance Element Coordinate System   web    
7752012-05-31Revit 2013 API Webcast Recording   web    
7762012-06-01Create Structural Plan View   web    
7772012-06-04Retrieve Embedded Resource Image   web    
7782012-06-06DevCamp Day One   web    
7792012-06-07DevCamp Day Two   web    
7802012-06-08DevLab and Room Separation   web    
7812012-06-11API Wishlist Survey Deadline Looming   web    
7822012-06-12The Revit 2013 Structure API   web    
7832012-06-13DocumentChanged versus Dynamic Model Updater   web    
7842012-06-15Create Section View Parallel to Wall   web    
7852012-06-18UIView and Windows Device Coordinates   web    
7862012-06-19AEC DevCamp 2012 Material   web    
7872012-06-20Real-World Concrete Corner Coordinates   web    
7882012-06-21Replacing Built-In Commands and Obtaining Their Ids   web    
7892012-06-22Worksharing Central Filename   web    
7902012-06-25Getting Going with the Cloud   web    
7912012-06-27OBJ Model Export Considerations   web    
7922012-06-28OBJ Model Exporter Take One   web    
7932012-06-29Update API Assembly References and Wizards   web    
7942012-07-02OBJ Model Exporter with Colours   web    
7952012-07-03OBJ Model Exporter with Multiple Solid Support   web    
7962012-07-05OBJ Model Exporter with Transparency Support   web    
7972012-07-06Meetings, Football, and RevitRubyShell   web    
7982012-07-09RevitRubyShell Implementation and Installer   web    
7992012-07-10Running Language Code and More Exporters   web    
8002012-07-11Multi-Version Add-in   web    
8012012-07-13Creating an Opening   web    
8022012-07-16View of NewGroup Duplicated Elements   web    
8032012-07-18Elbow Fitting Selection and Dimensioning   web    
8042012-07-23UR1 and Line Origin versus Start and End Point   web    
8052012-08-01Vacation Time and Various Notes   web    
8062012-08-15Structural Concrete Setout Point Add-in   web    
8072012-08-16Cancel Family Creation and UK NBS and BIM News   web    
8082012-08-17Graphically Display Area Boundary Loops   web    
8092012-08-20Do Not Delete During Iteration   web    
8102012-08-21Room in Area Predicate via Point in Polygon Test   web    
8112012-08-22ADSK File Import and Phase of Room   web    
8122012-08-23Updated Revit MEP 2013 Material   web    
8132012-08-24Titbits of the Week   web    
8142012-08-28Validate Roof Type and View OBJ on Android   web    
8152012-08-30AU Registration and ADN Open   web    
8162012-08-31Set View Section Box to Match Scope Box   web    
8172012-09-03Video Animated Ribbon Item Tooltip   web    
8182012-09-04Group My Own Commands in the Ribbon   web    
8192012-09-05IFC GUID Generation and Uniqueness   web    
8202012-09-05Updating Properties and Announcing Revit LT   web    
8212012-09-07Parts, Assemblies, PartUtils and DivideParts   web    
8222012-09-10Sphere Creation for AVF and Filtering   web    
8232012-09-12Filter for Touching Beams Using Solid Intersection   web    
8242012-09-13Categories Collection Item Accessor Fails   web    
8252012-09-14Apollonian Sphere Packing via Web Service and AVF   web    
8262012-09-18DivideParts in F# and Line Styles   web    
8272012-09-19Picking Two Points Consecutively   web    
8282012-09-20Exporting Parameter Data to Excel, and Re-importing   web    
8292012-09-21FamilyParameter IsShared Property   web    
8302012-09-24Mobile Device Room Location   web    
8312012-09-25Disposal of Revit API Objects   web    
8322012-09-26FindElement and Collector Optimisation   web    
8332012-09-27IFC Export Area Calculation and Other Enhancements   web    
8342012-09-28Create Dimension between Two Lines   web    
8352012-10-01Element Intersection   web    
8362012-10-03Ribbon Creation Utility   web    
8372012-10-05Detach Workset and TaskDialog Command Link Order   web    
8382012-10-08Wall Footing Relationship Revisited   web    
8392012-10-09Slab Boundary Revisited   web    
8402012-10-10UIView, Windows Coordinates, ReferenceIntersector and My Own Tooltip   web    
8412012-10-11Point Cloud Request Batching   web    
8422012-10-12Porting an AutoCAD Application   web    
8432012-10-16Sweep PickPath Tolerance Criteria   web    
8442012-10-17Deleting a GraphicStyle Element   web    
8452012-10-18Beam Bottom Endpoint   web    
8462012-10-22Room Polygon and Furniture Picker in SVG   web    
8472012-10-23Revit 2013 Update Release 2   web    
8482012-10-25PowerPoint Slide Deck Text Extractor Ppt2txt   web    
8492012-10-26Stair Geometry and Roombook   web    
8502012-10-29Ensure WPF Add-in Remains in Foreground   web    
8512012-10-30The Temporary Transaction Trick for Gross Slab Data   web    
8522012-10-31Display a Geometry Debugging Point in the Model   web    
8532012-11-01Drive Revit through a WCF Service   web    
8542012-11-02Temporary Transaction Trick Touchup   web    
8552012-11-06Geometry Object Subcategory   web    
8562012-11-13Moving to the Mac   web    
8572012-11-14Roll Your Own Toggle Button   web    
8582012-11-15Happy Bhai Dooj!   web    
8592012-11-16Updater Queues Multi-Transaction Operation for Idling   web    
8602012-11-20Building Performance Analysis and Face Tessellation   web    
8612012-11-22Survey and Project Base Point   web    
8622012-11-26Grand Canyon and AU Arrival   web    
8632012-11-28The Champions Roundtable at AU   web    
8642012-11-29AU Classes on the View, MEP and Link APIs   web    
8652012-11-30AU Classes on Python, UI, Server and Framework APIs   web    
8662012-12-03Extra Transaction or Regeneration Required   web    
8672012-12-04Boost Your BIM and Dance with an Elephant   web    
8682012-12-05Reload Add-in for Debug Without Restart   web    
8692012-12-07The BIM 360 Glue Viewer and REST API   web    
8702012-12-11BIM 360 Glue REST API Authentication Using Python   web    
8712012-12-12Accessing all Elements in a Schedule   web    
8722012-12-13ToElementIds Performance   web    
8732012-12-14Installing a Macro and Closing the Active Document   web    
8742012-12-19Solid Centroid and Volume Calculation   web    
8752012-12-21GetInstanceGeometry Overhead and Invalid References   web    
8762013-01-03Create FaceWall on Slanted Mass Face   web    
8772013-01-04Family Symbols versus Types and SelectionFilterElement   web    
8782013-01-08URL and Other Buttons, XYZ Points and Vectors   web    
8792013-01-09Set Detail Curve Visibility   web    
8802013-01-10What I Do, Wall Layers and Open Transactions   web    
8812013-01-11Determine Revit Demo Mode Revisited   web    
8822013-01-14Revit 2013 Unit Conversion Utility   web    
8832013-01-16Determine Revit Demo Mode and Serial Number   web    
8842013-01-17Implement a Progress Bar and Abort a Lengthy Process   web    
8852013-01-18Changing Viewport Type   web    
8862013-01-22Delux Database Enabled Loading and Updating   web    
8872013-01-24Basic File Info and RVT File Version   web    
8882013-01-28Duplicate Built-in Parameter Values and BipChecker Update   web    
8892013-01-30Read Material Asset Parameter   web    
8902013-01-31Change Element Workset   web    
8912013-02-01Parameters versus Properties   web    
8922013-02-05Content Localisation   web    
8932013-02-06Simple MEP System Traversal   web    
8942013-02-07Adding a Button to Existing Ribbon Panel   web    
8952013-02-08MP3 Manipulation Using Python, Mutagen and Ffmpeg   web    
8962013-02-112D SVG Editing on Mobile Device with Raphael   web    
8972013-02-12Adjustable Versus Perpendicular Spud   web    
8982013-02-13Eliminating Compiler Warnings and Deprecated Calls   web    
8992013-02-15Retrieving Schedules on a Sheet   web    
9002013-02-18ADN Revit API Training Material Update and Vacation   web    
9012013-02-21What's New in the Revit 2010 API   web    
9022013-02-25What's New in the Revit 2011 API   web    
9032013-02-28What's New in the Revit 2012 API   web    
9042013-03-04What's New in the Revit 2013 API   web    
9052013-03-07Curve Evaluation and Song of the Gulls   web    
9062013-03-11Export Wall Parts Individually to DXF   web    
9072013-03-12Sweep Family Performance Enhancement   web    
9082013-03-13LoadFamily and Collector Iteration Performance   web    
9092013-03-14Units and RevitLookup   web    
9102013-03-15Determining Purgeable Elements   web    
9112013-03-19Parameter DisplayUnitType, Bretagne and Decompilers   web    
9122013-03-20Cloud & Mobile, Extensible Storage Data Use in Schedules   web    
9132013-03-21Rename View by Matching Elevation Tag with Room   web    
9142013-03-25Relax – Simple Free Cloud Based Data Repository with NoSQL, CouchDB, and IrisCouch   web    
9152013-03-27Revit 2014 and Supporting Columns   web    
9162013-03-28Revit 2014 API and Room Plan View Boundary Loops   web    
9172013-03-29Filter for Family Instances in a Room   web    
9182013-03-31Sort and Orient Curves to Form a Contiguous Loop   web    
9192013-04-01Cloud-Based Restaurant Seating and Cleaning   web    
9202013-04-02The Revit 2014 Pre-release API and SDK   web    
9212013-04-03Extrusion Analyser and Plan View Boundaries   web    
9222013-04-04Curve Following Face and Bounding Box Implementation   web    
9232013-04-05Getting Started with the Revit API   web    
9242013-04-08GeoSnoop .NET Boundary Curve Loop Visualisation   web    
9252013-04-09Handy Utility Classes   web    
9262013-04-10Setting up your ViewOrientation3D   web    
9272013-04-11Desktop to Cloud via DreamSeat CouchDB Client   web    
9282013-04-12Launching AutoCAD within a Revit Add-in   web    
9292013-04-16Changing a Family Parameter from Type to Instance   web    
9302013-04-17Perpetual GUID Algorithm and Revit 2014 Product GUIDs   web    
9312013-04-18Migrating The Building Coder Samples to Revit 2014   web    
9322013-04-19Room Editor Project Overview and CouchDB Configuration   web    
9332013-04-22Grouping Schedule Headers and How to Do Something   web    
9342013-04-23Accessing and Filtering by Ramp Material   web    
9352013-04-24Migrating a Built-in Category and Other Things   web    
9362013-04-25Room and Furniture Loops Using Symbols   web    
9372013-04-26Compiling the Revit 2014 SDK   web    
9382013-04-29What's New in the Revit 2014 API   web    
9392013-04-30Transactions, Sub-Transactions and Transaction Groups   web    
9402013-05-02Revit 2014 SDK and Visual Debugging Tools   web    
9412013-05-06My Cloud-Based 2D Editor Implementation and Status   web    
9422013-05-07A Simpler Dockable Panel Sample   web    
9432013-05-08Copy and Paste API Applications and Modeless Assertion   web    
9442013-05-09Add-In Wizards for Revit 2014   web    
9452013-05-11Source Code Formatting and Google Prettifier   web    
9462013-05-12Removing Unused Mac Architectures, Languages and Files   web    
9472013-05-14External Command Lister and Adding Ribbon Commands   web    
9482013-05-15DWG Issues and Various Other Updates   web    
9492013-05-17CouchDB Implementation and GitHub Repository   web    
9502013-05-23Effortless Extensible Storage   web    
9512013-05-26Revit API Wishlist Survey   web    
9522013-05-27Load Your Own External Command on the Fly   web    
9532013-05-28Reloading and Debugging External Commands on the Fly   web    
9542013-05-30Exchange App Webinar and Travel Plans   web    
9552013-05-31RevitRubyShell for Revit 2014   web    
9562013-06-02Python Mac Pasteboard Access   web    
9572013-06-03Auto PDF Print from Revit 2014   web    
9582013-06-04Tech Summit and More AutoExport Considerations   web    
9592013-06-07Correct Detail Component Rotation in Elevation View   web    
9602013-06-08Migrating the ADN Training Labs to Revit 2014   web    
9612013-06-09Super Insane MP3 and Songbird Playlist Exporter   web    
9622013-06-10Removing Deprecated API Compilation Warnings   web    
9632013-06-11Wishlist Survey Reminder and New SDK Sample Overview   web    
9642013-06-12Python and Ruby Scripting Resources and the Sharp Glyph   web    
9652013-06-13The ADN Sample AdnRme for Revit MEP 2014   web    
9662013-06-14ADN Training Material for Revit Structure 2014   web    
9672013-06-17Structural Analytical Code Checking and Results Builder   web    
9682013-06-18Processor Architecture Mismatch Warning and Key Hook   web    
9692013-06-19Sun Direction, Shadow Calculation and Wizard Update   web    
9702013-06-21Behind the Scenes of the NBS Revit Add-in   web    
9712013-06-23More on Structural Analysis Code Checking   web    
9722013-06-26Key Concepts of the Family Editor   web    
9732013-06-28Family API Add-in – Load Family and Place Instances   web    
9742013-07-01Family API – Create Type, Select and Modify Instances   web    
9752013-07-02Family API – Nested Type, Instance and Symbol Retrieval   web    
9762013-07-03Dynamically Hide and Display a Ribbon Panel   web    
9772013-07-04Recursively Disable Architecture Mismatch Warning   web    
9782013-07-06Create a Filled Region to use as a Mask   web    
9792013-07-08Graphics Pipeline Custom Exporter   web    
9802013-07-09Texture Bitmap and UV Coordinates   web    
9812013-07-11ADN Mesh Data Custom Exporter to JSON   web    
9822013-07-12Revit Add-in Unit Testing   web    
9832013-07-15Football and Space Adjacency for Heat Load Calculation   web    
9842013-07-16Revit 2014 OBJ Exporter and New SDK Samples   web    
9852013-07-17Curve Length, Idling, Units and RevitPythonShell   web    
9862013-07-19User MEP Calculation Sample   web    
9872013-07-24Earn $100 Submitting an Autodesk Exchange App   web    
9882013-07-26Sydney Revit API Training and Vacation   web    
9892013-07-31Create a Floor with an Opening or Complex Boundary   web    
9902013-08-04Spanish Revit API Training in Mexico   web    
9912013-08-06Animation and the DisplacementElement Class   web    
9922013-08-07Setting the Exact Same Location for two Views on a Sheet   web    
9932013-08-08The Revit Server REST API   web    
9942013-08-09Setting the Compound Structure Core and Shell Layers   web    
9952013-08-10Revit 2014 Update Release 1   web    
9962013-08-12Attributes, Relationships and Other Stuff   web    
9972013-08-13Deleting and Updating Extensible Storage Schema   web    
9982013-08-14Language Independent Section View Type Id Retrieval   web    
9992013-08-15Generating a MidCurve Between Two Curve Elements   web    
10002013-08-16Exchange App Videos and DevTV YouTube Channel   web    
10012013-08-19View Filter API   web    
10022013-08-20Determining Absolutely All Visible and Hidden Elements   web    
10032013-08-21ADN Training Material on GitHub and Portathon Reminder   web    
10042013-08-22Happy Birthday, Dear Building Coder!   web    
10052013-08-23Retrieving All Available Line Styles   web    
10062013-08-26Exporting Image and Setting a Default 3D View Orientation   web    
10072013-08-27Determining Maximal Flow in HVAC Duct Connectors   web    
10082013-08-28Open MEP Connector Warning   web    
10092013-08-29Revit Server API Access and VBScript   web    
10102013-08-30Issue Using a Preview Control in a Macro   web    
10112013-09-02Boolean Operations for 2D Polygons   web    
10122013-09-03No Command Launching from Dockable Panel   web    
10132013-09-04Set a Suitable View for Family Instance Placement   web    
10142013-09-05Room Neighbours   web    
10152013-09-06Cloud and AppStore Usage Grows – Portathon Reminder   web    
10162013-09-09Access to Individual Elements in Linked Projects   web    
10172013-09-10Determine Location Attributes and Retrieve Key Elements   web    
10182013-09-11Creating an Offset Wall   web    
10192013-09-12Rotating a Plan View   web    
10202013-09-12Registration Open for Autodesk University 2013   web    
10212013-09-13MultiReferenceAnnotation Example   web    
10222013-09-14AppStore Advice and Zooming in a Preview Control   web    
10232013-09-17How to Save a Solid to a File   web    
10242013-09-1910.000.000.000th Post and Element Type Parameters   web    
10252013-09-25Back and Preparing for AU and DevDays Conferences   web    
10262013-09-26Saving a Solid to a SAT File Implementation   web    
10272013-09-27Max' Revision Wrapper Class   web    
10282013-09-30Family Instance Placement   web    
10292013-10-01AppHack 2, Training Material and the Developer Guide   web    
10302013-10-02Set View Section Box to Match Scope Box for Revit 2014   web    
10312013-10-03Viewport Positioning and Conceptual Design Automation   web    
10322013-10-04Programmatic Access to Duct Sizes   web    
10332013-10-09Handle Your Own Exceptions   web    
10342013-10-10Handle Your Own Exceptions and Edit Slab Boundaries   web    
10352013-10-14LINQ DIY Transformed Geometry Bounding Box   web    
10362013-10-15The Building Coder Samples on GitHub   web    
10372013-10-16Move Duct Join Add-In with Video and GitHub Support   web    
10382013-10-17Text File Driven Automatic Placement of Family Instances   web    
10392013-10-18Using the Built-In Revit AcGe Functionality   web    
10402013-10-21Programmatic Custom Add-In External Command Launch   web    
10412013-10-22The Dynamo Revit Unit Test Framework   web    
10422013-10-23RevitLookup on GitHub and Invitation to Collaborate   web    
10432013-10-24Move Tag to Host Location   web    
10442013-10-25ExportCncFab on GitHub and RevitLookup Update   web    
10452013-10-28RoomEditorApp for Revit 2014 on GitHub   web    
10462013-10-29Determining Room Boundary Segment Generating Element   web    
10472013-10-30Wall Compound Layer, Other Geometry and Licenses   web    
10482013-10-31Invitation to Autodesk DevDays 2013   web    
10492013-11-01RoomEditorApp Architecture and External Application   web    
10502013-11-04Unit Abbreviations   web    
10512013-11-05Mapping Display Unit Type to Unit Types   web    
10522013-11-06Determining Host Document Location of a Linked Element   web    
10532013-11-07Placing Equidistant Points Along a Curve   web    
10542013-11-08User MEP Calculation Sample on GitHub   web    
10552013-11-11Singleton Application versus Multiple Command Instances   web    
10562013-11-12Revit 2014 Update Release 2   web    
10572013-11-13Intimate Revit Database Exploration with the Python Shell   web    
10582013-11-14The Developer Guide is Back on WikiHelp   web    
10592013-11-15Multi-Version Visual Studio Revit Add-In Wizard   web    
10602013-11-17Revit 2014 Developer Guide PDF   web    
10612013-11-18Localised Unit Abbreviations   web    
10622013-11-19RoomEditorApp Idling and Benchmarking Timer   web    
10632013-11-20Translated Shared Parameter GUID Consolidation   web    
10642013-11-21Determining Whether Parameter is Type or Instance Bound   web    
10652013-11-22Debugging Revit 2014 API with Visual Studio 2013   web    
10662013-11-25Erasing Extensible Storage with Linked Files   web    
10672013-11-26A Pee Cee Free Day   web    
10682013-12-02Arrival at AU and The Story of Stuff   web    
10692013-12-03DevDay@au Chronicle Estorage View Depth Sound of Noise   web    
10702013-12-04AU Day 1, Revit 2014 API Class and Bounding Box Rotation   web    
10712013-12-05AU Day 2, Worksharing and Revit 2014 API Roundtables   web    
10722013-12-06AU Day 3, ReCap & Cloud-based Round-trip Model Editing   web    
10732013-12-08Nightingale M3U and Denormalized Filename Characters   web    
10742013-12-09Replacing an Idling Event Handler by an External Event   web    
10752013-12-10Triggering Immediate External Event Execute   web    
10762013-12-11Security, Framing Cross Section Analyser and REX   web    
10772013-12-12Saving a New Central File to Revit Server   web    
10782013-12-16DevLab Munich   web    
10792013-12-17Visual Studio 2013 May Partially Support Edit and Continue   web    
10802013-12-19Driving CNC Fabrication and Shared Parameters   web    
10812013-12-20Setting the View Display Background   web    
10822013-12-23Starting to Clean Up For the Break   web    
10832014-01-06Happy New Year!   web    
10842014-01-07Sustainably Chugging Along   web    
10852014-01-08Calculating a Rolling Offset Between Two Pipes   web    
10862014-01-09No Inheritance and No Strong Naming   web    
10872014-01-10Creating a Rolling Offset Pipe Between Two Pipes   web    
10882014-01-13HTML5 for Teaching Maths and Physics   web    
10892014-01-14Connecting the Rolling Offset Pipe to its Neighbour Pipes   web    
10902014-01-15Explicitly Placing Rolling Offset Elbow Fittings   web    
10912014-01-16Simpler Rolling Offset Using NewElbowFitting   web    
10922014-01-17Revit API Help Online and Hiking on La Palma   web    
10932014-01-27Final Rolling Offset Using Pipe.Create   web    
10942014-01-28Lots of Clouds   web    
10952014-01-29REST POST Request to Revit Server 2014   web    
10962014-01-30Future Proofing The Building Coder Samples   web    
10972014-01-31The GEOM_VISIBILITY_PARAM Visibility Settings   web    
10982014-02-04Deleting Unnamed Non-Hosting Reference Planes   web    
10992014-02-05Skip Invalid Element Generation Using Failure API   web    
11002014-02-07Web Workshop, Tech Summit Plans and Security   web    
11012014-02-10Lots of Views, Families and Booleans   web    
11022014-02-11Getting Two Different Kinds of Joined Elements   web    
11032014-02-12The 360 View   web    
11042014-02-13Daylighting Extension and Splitting with Taps   web    
11052014-02-14Creating an Offset Wall Solution   web    
11062014-02-17Wrangling Revisions with Ruby   web    
11072014-02-18Different Revit API Aspects and Features   web    
11082014-02-19More on Revit API Aspects and Features   web    
11092014-02-20TextNote Leader Alignment   web    
11102014-03-12Back from Desert and Two Happy Events   web    
11112014-03-12AutoCAD and Revit API Training in Peru   web    
11122014-03-13Detach Beam from Plane   web    
11132014-03-14Determining the Quiescent State   web    
11142014-03-17Using Balloon Tips in Revit   web    
11152014-03-18Storing Revit Add-in Settings   web    
11162014-03-20Adding New Materials from List Updated   web    
11172014-03-21Using Generic Collections with Filters and Forms   web    
11182014-03-24Another Balloon Tip Implementation   web    
11192014-03-25Selecting Visible Categories from a Set of Views   web    
11202014-03-26Cannot Get BindingMap of a Family Document   web    
11212014-03-28Creating a Sloped Floor   web    
11222014-03-29Adding New Materials from List Enhancements   web    
11232014-03-31Category Analysis with and without Python   web    
11242014-04-01Automating Large Scale Waste Recycling and Sustainability   web    
11252014-04-02Selecting Sheets instead of Views in the RoomEditorApp   web    
11262014-04-03RevitLookup for Revit 2015   web    
11272014-04-04WPF Fill Pattern Viewer Control   web    
11282014-04-05BIM 360 Growing Fast   web    
11292014-04-07Getting Serious Adding New Materials from List   web    
11302014-04-08No DevCamp – Better – NY AEC Technology Symposium   web    
11312014-04-09Revit 2015 API News – DevDays Online Recording   web    
11322014-04-10Transaction Group Regeneration for InstanceVoidCutUtils   web    
11332014-04-11Profiling Revit Add-ins and RoomEditorApp Enhancements   web    
11342014-04-11Revit 2015 and Updated SDK Released   web    
11352014-04-14Category Support for Shared Type and Instance Parameters   web    
11362014-04-15Compiling the Revit 2015 SDK and Migrating Bc Samples   web    
11372014-04-16Migrating RoomEditorApp to Revit 2015   web    
11382014-04-17Determining the Size and Location of Viewports on a Sheet   web    
11392014-04-18RevitLookup for UR1, ADN, AEC and AU News   web    
11402014-04-22WPF Fill Pattern Viewer Control Benchmark   web    
11412014-04-25What's New in the Revit 2015 API   web    
11422014-04-26Hackergarten Meetup   web    
11432014-04-27WAV Database, Python and GUI Tutorials   web    
11442014-04-28Element Id – Export, Unique, Navisworks and Other Ids   web    
11452014-04-30Revit as a Service and Sheet-View-Element Transforms   web    
11462014-05-02IFC Exporter Open Source Wiki   web    
11472014-05-05New Revit 2015 SDK Samples   web    
11482014-05-07On Handling Warnings and Failures   web    
11492014-05-08Multithreading Throws Exceptions in Revit 2015   web    
11502014-05-09Room Editor Element Properties and the Async Trap   web    
11512014-05-12Add-In Wizards for Revit 2015   web    
11522014-05-13AEC Hackathon, DevGuide URL and AppStore Webinar   web    
11532014-05-14Project Solon and BipChecker for Revit 2015 on GitHub   web    
11542014-05-15DirectShape Performance and Minimum Size   web    
11552014-05-16New York Travel Preparation and ADN Job Opening   web    
11562014-05-18AEC Hackathon – From the Midst of the Fray   web    
11572014-05-19RvtVa3c – Revit Va3c Generic AEC Viewer JSON Export   web    
11582014-05-20Views Displaying Given Element, SVG and NoSQL   web    
11592014-05-21RvtVa3c Assembly Resolver   web    
11602014-05-22TessellateSolidOrShell – Holes Versus Wholes   web    
11612014-05-26Properties in DWF, IFC, Tables and Extensible Storage   web    
11622014-05-27ADN Revit 2015 API Training Material   web    
11632014-05-28Updated SDK, DevTV, BIM 360 News and Viewer   web    
11642014-05-29Exchange Apps Webinar Recording and Resources   web    
11652014-05-30Revit API Wishlist Survey   web    
11662014-05-31Room Editor with Handlebars and Refresh   web    
11672014-06-01RoomEditorApp Plurals and Free Educational Software   web    
11682014-06-02The Revision API and a Form on the Fly   web    
11692014-06-04Technical Summit Day 1 and Removing RVT References   web    
11702014-06-10Room Editor Live and Unofficial Custom Ribbon Button   web    
11712014-06-23Back from Sweden   web    
11722014-06-24Revit 2015 Update Release 3   web    
11732014-06-26Refresh Element Graphics Display   web    
11742014-06-27AdnRme Migrated to Revit MEP 2015 on GitHub   web    
11752014-06-30Write Revit Add-ins No Coding Experience Required   web    
11762014-07-01Referenced Files as a Service   web    
11772014-07-02IFC GUID Algorithm Update and Family Modification   web    
11782014-07-03Moving an External Command Button within the Ribbon   web    
11792014-07-14Autodesk View and Data API   web    
11802014-07-15Upgrading Family Files Silently   web    
11812014-07-16The Road Ahead   web    
11822014-07-21CreateLinkReference Sample Code   web    
11832014-07-22Upgrading Family Files Silently, Part 2   web    
11842014-07-23Wishlist, Blogging, Smartgeometry, Dynamo and FormIt   web    
11852014-07-24Teaching a Man How To Fish and Schedule Creation   web    
11862014-07-29Basel.js Meetup View and Data API Demo   web    
11872014-07-30Launching a Stand-alone Executable   web    
11882014-07-31View and Data API Presentation Material   web    
11892014-08-07Autodesk Exchange Apps Hackathon   web    
11902014-08-11Accessing a Revit Server Central Model Path   web    
11912014-08-12Activate Your Family Symbol Before Using It   web    
11922014-08-19Accessing Discipline and Duplicating View Template   web    
11932014-08-20Setting the Phase of a View   web    
11942014-08-21Document Version, GUID and Number of Saves   web    
11952014-08-22Three.js AEC Viewer Progress on Two Fronts   web    
11962014-08-24Striving for Personal Peace Continued   web    
11972014-08-25How to Fail, Still Win Big and Handle Duplicate Types   web    
11982014-08-26Accessing Extensible Storage on OwnerFamily in Project   web    
11992014-08-27DevDay, Meetup and Hackathon Event Calendar   web    
12002014-08-28Exploring How to Remove a Shared Parameter Definition   web    
12012014-08-29Revit Server Thumbnail Requires Redistributable   web    
12022014-09-01Planes, Projections and Picking Points   web    
12032014-09-02Custom Exporter GetCameraInfo   web    
12042014-09-03AdnRme Update to Eliminate Obsolete API Usage   web    
12052014-09-04Debugging and Maintaining the Image Relationship   web    
12062014-09-05Setting up a 3D View like a Section View   web    
12072014-09-08Autodesk View and Data API Webinar   web    
12082014-09-09Architecture Mismatch Warning Disabler Update   web    
12092014-09-10Unique Names and the NamingUtils Class   web    
12102014-09-11ADN Labs Xtra on GitHub and RvtVa3c in Three.js   web    
12112014-09-17A Couple of Recent Issues   web    
12122014-09-18Job Opportunities, Events, Plans and Planes   web    
12132014-09-22Hackathon, Climate and my CO2 Footprint   web    
12142014-09-24Modifying, Saving and Reloading Families   web    
12152014-09-29Events, Again, and Creating an Extrusion Roof   web    
12162014-09-30Revit 2015 R2, UR4 and Dimension Prefix & Suffix   web    
12172014-10-01Creating a Sloped Wall   web    
12182014-10-06Is a Given Element Hidden in a View?   web    
12192014-10-08ADVA Webinar, Free Student Software and AU   web    
12202014-10-10Past, Future, Frameworks, RevitLookup and Hackathon   web    
12212014-10-13Hackzurich, Fluelisee, Memento, Jobs and Books   web    
12222014-10-14Point Cloud Indexing Update   web    
12232014-10-16New Text Note and Text Width Calculation   web    
12242014-10-17Brussels Hackathon, Pipe Wall Thickness and Voids   web    
12252014-10-20PoiPointer, View Depth Override and Destination BIM   web    
12262014-10-21Autodesk View and Data API Notes and Samples   web    
12272014-10-22Worksharing and Duplicating Element Geometry   web    
12282014-10-24Autodesk Open Source All Over – Germany and Japan   web    
12292014-10-25Berlin Hackathon Begin   web    
12302014-10-26Attached Detail Groups and Inverse Relationships   web    
12312014-10-29Berlin Hackathon Results, 3D Viewer and Web News   web    
12322014-10-30Updated SDKs for Revit 2015 R2 and UR4   web    
12332014-10-31NewCrossFitting Connection Order   web    
12342014-11-03Concrete Setout Points for Revit Structure 2015   web    
12352014-11-04Functional Programming, View and Data API Demos   web    
12362014-11-05Creating Topography Contours and Building Masses   web    
12372014-11-06The DevDays 2014 Conferences Have Started   web    
12382014-11-07Migrating Deprecated API and 2D Boolean Operations   web    
12392014-11-10DirectShape versus Families, Category and Texture   web    
12402014-11-11Rotation by π and NewSweptBlend Using Arcs   web    
12412014-11-12Picking Pairs and Dimensioning Family Instance Origin   web    
12422014-11-13Selection Filters, Adjacency and the Good Universe   web    
12432014-11-14Futureproofing and Determining Intersecting Elements   web    
12442014-11-17The Revit API is Never Ever Thread Safe   web    
12452014-11-18.NET Open Source and Visual Studio Community   web    
12462014-11-19WebGL Goes Mobile and Sorted Level Retrieval   web    
12472014-11-20Cloud Accelerator, VDC and Transaction Groups   web    
12482014-11-25Robot Structural Analysis and Mac App Tabbing   web    
12492014-11-27Traditional, 3D Printed & Vertical Compound Structures   web    
12502014-11-29Handling Transaction Status and Errors   web    
12512014-12-01DevDays Conference at Autodesk University   web    
12522014-12-02Porting an AutoCAD Application to Revit   web    
12532014-12-02Autodesk University Keynotes   web    
12542014-12-03The Revit API Panel at Autodesk University   web    
12552014-12-04AU Ends and Batch Rendering Across Several Projects   web    
12562014-12-08DevDays Conference and Meetup in Paris   web    
12572014-12-09SelFilter, a Powerful Generic Selection Filter Utility   web    
12582014-12-15DevDays, GitHub, STL and OBJ Model Import   web    
12592014-12-15Embedding an Interactive View and Data IFC Model   web    
12602014-12-16Milano Meetups and My New NFC Business Card   web    
12612014-12-17DevDays in Milano, Links, Textures, UR4 vs R2   web    
12622014-12-23Back from The Conference Tour and Wrapping Up   web    
12632014-12-25The Building Coder wishes you a Merry Christmas!   web    
12642015-01-06Happy New Year and New Beginnings!   web    
12652015-01-07The Future – Ø£Ù†Ø§ تشار   web    
12662015-01-08Cloud Accelerator and More Revit Stuff   web    
12672015-01-09Autodesk Internship in California and Sorting Edges   web    
12682015-01-143D Viewing, vA3C and RevitLookup Updates   web    
12692015-01-15ExporterIfcUtils Curve Loop Sort and Validate   web    
12702015-01-16Vacazione in Sicilia   web    
12712015-01-23Getting the Wall Elevation Profile   web    
12722015-01-26Isolating Elements of a Given System   web    
12732015-01-27Wall Elevation Profiles in The Building Coder Samples   web    
12742015-02-02List Pipe Sizes and More Obsolete API Usage Removal   web    
12752015-02-03Revit 2015 R2 and the Read-Write Workset API   web    
12762015-02-04Family Instance Area and Auto-Loading a Project File   web    
12772015-02-05Understanding the Use of the UniqueId   web    
12782015-02-06Extensible Storage in a Worksharing Environment   web    
12792015-02-10Terminating a Family Instance Placement Loop with Esc   web    
12802015-02-11Using Transaction Groups   web    
12812015-02-12Displaying Progress Bar and Generating Animated GIF   web    
12822015-02-14Determining the Face Tangent at a Picked Point   web    
12832015-02-17From Hack to App – OBJ Mesh Import to DirectShape   web    
12842015-02-19View and Data API Sample in Swift and Mac OS Upgrade   web    
12852015-02-20Keyboard Shortcuts and Other News   web    
12862015-02-21Automation, Ribbon Panel, ItemExecuted and Vacation   web    
12872015-03-02PostRequestForElementTypePlacement Sample   web    
12882015-03-03A Dockable Web Browser   web    
12892015-03-05Opening and Activating Document in an Event Handler   web    
12902015-03-06Automatically Open a Project on Startup   web    
12912015-03-09Thin Lines Add-in Using UI Automation   web    
12922015-03-10List and Switch Design Options Using UI Automation   web    
12932015-03-11State of the View and Data API, vA3C and Edge Ids   web    
12942015-03-12Framing Cross Section Analyser and REX in Revit 2015   web    
12952015-03-16Element Selection Changed Event   web    
12962015-03-17Calculating Gross and Net Wall Areas   web    
12972015-03-19FindInserts Retrieves All Openings in All Wall Types   web    
12982015-03-23IFCExportUtils Determine Door and Window Area   web    
12992015-03-25Split Personality and Revit API Class Diagram   web    
13002015-03-27First Cloud Accelerator Success – Second Coming Up   web    
13012015-03-31Re-Researching Lighting Family Instance Placement   web    
13022015-04-01List All Import Instances   web    
13032015-04-02Revit API Trends and Team Meeting in Bretagne   web    
13042015-04-07Back from Easter Holidays and Various Revit API Issues   web    
13052015-04-08Duplicate Add-In GUID and Driving Revit from Outside   web    
13062015-04-09Sending a Room Boundary to an SVG Node Web Server   web    
13072015-04-10Curved Wall Elevation Profile and Creator Class Update   web    
13082015-04-14Exporting 3D Element Geometry to a WebGL Viewer   web    
13092015-04-17Gross and Net Wall Area Calculation Enhancement   web    
13102015-04-21Revit 2016 API News and DevDays Online Recording   web    
13112015-04-23What's New in the Revit 2016 API   web    
13122015-04-27Add-in Migration to Revit 2016 and Updated Wizards   web    
13132015-04-29Live Revit Element Rendering in Remote WebGL Viewer   web    
13142015-05-05Transferring a Wall Type   web    
13152015-05-07Cloning a Solid, AngelHack, 3D Web Fest and Dubai   web    
13162015-05-13How to Retrieve Dimensioning References   web    
13172015-05-14Live Development and a Share Bar   web    
13182015-05-15CopyElements, Revit 2016 Scalability, Python and Ruby   web    
13192015-05-19Compatibilizar entre versões – API Compatibility Helper   web    
13202015-05-20Autodesk University, Q1, ADN Labs and Wizard Update   web    
13212015-05-21Migrating The Building Coder Samples to Revit 2016   web    
13222015-05-22A360 Viewer Widget and Selecting a DWG Export Setup   web    
13232015-05-26Connecting Desktop, Cloud, Lines and Grid Segments   web    
13242015-05-27RevitLookup in Python Shell and Multi-Release Solution   web    
13252015-05-28Geometry Creation and Line Intersection Exceptions   web    
13262015-06-01Revit 2016 SP1 and Sheets Missing from Print Dialogue   web    
13272015-06-03Getting Started Creating Families and RFA Files   web    
13282015-06-03Create Duct, Pipe and Point Transform   web    
13292015-06-05ArchSample, Active Transaction and AdnRme for 2016   web    
13302015-06-06AngelHack Athens, Sustainability and Export Precision   web    
13312015-06-16CNC Direct – Export Wall Parts to DXF and SAT   web    
13322015-06-18ADN Labs Xtra, Multi-Version Add-Ins and CNC Direct   web    
13332015-06-22Revit API Task Solving Approach, Success, AppStore...   web    
13342015-06-23Dynamo, Centroid & Volume Calculation Migration Blitz   web    
13352015-06-24The Responsive Building Coder   web    
13362015-06-25Accelerator, AppStore, Disqus and AEC DevBlog Articles   web    
13372015-06-30IFC GUID Access, Life Span and Cloning of Geometry   web    
13382015-07-02FireRating and the Revit Python Shell in the Cloud   web    
13392015-07-07Using ReferenceIntersector in Linked Files   web    
13402015-07-08Intersect Solid Filter, AVF vs DirectShape Debugging   web    
13412015-07-09Type Catalogues   web    
13422015-07-10Grevit, FireRating in the Cloud Deployment, Vacation   web    
13432015-07-13Clicks, DMU, Surfaces, FireRating Feedback, Vacation   web    
13442015-08-11Revit API Context and Form Creation Errors   web    
13452015-08-12Revit Geometry Kernel and Cylinder Faces   web    
13462015-08-13Internal vs. Base Point and Link to Host Coordinates   web    
13472015-08-17Revit Future and Saving User Configuration Settings   web    
13482015-08-18Batch Processing, DWFx Links and Future-Proofing   web    
13492015-08-20Stingray and Project Expo for Architects   web    
13502015-08-21Revit Add-In Wizard GitHub Installer   web    
13512015-08-28Markdown, Fusion Accelerator $$$, Revisions and Bulk Upgrade   web    
13522015-09-02RealDWG, AutoCAD I/O, View & Data API Meetup   web    
13532015-09-03Family Category, Element Ids, Transaction Undo and Updates   web    
13542015-09-04F# Procedural Modelling and Z3 Constraint Solving   web    
13552015-09-08DirectShape From Face and Sketch Plane Reuse   web    
13562015-09-09Geometry Basics and No Modifying Linked Files   web    
13572015-09-11Simple DirectShape on Face, RestSharp, PUT and POST   web    
13582015-09-15FireRating in the Cloud and RevitLookup Update   web    
13592015-09-22Sharing, Dynamo and a Chinese Book   web    
13602015-09-24SVG, In-Memory Family, RevitLookup BoundingBox   web    
13612015-09-25Change Type, Iterate Elements, Create Family   web    
13622015-09-28Revit Answer Day and Creating a Roof   web    
13632015-09-29Lunar Eclipse and Custom File Properties   web    
13642015-10-02PostCommand causes Internal Exceptions, a Break   web    
13652015-10-19Autodesk DevDays 2015 and CAD Trends   web    
13662015-10-21Filtering Samples and RAC 2016 Features   web    
13672015-10-22Sheet to Model Coordinate Conversion   web    
13682015-10-27RTC Classes and Getting Started with Revit Macros   web    
13692015-10-31Happy Halloween!   web    
13702015-11-03RTC, Budapest and the Revit API Panel   web    
13712015-11-04Fill Pattern Viewer Fix and Add Materials for 2016   web    
13722015-11-06Connecting Desktop and Cloud, Room Editor Update   web    
13732015-11-09WorksharingUtils   web    
13742015-11-13Kids@Work and AEC Technology Symposium Videos   web    
13752015-11-17Flatten All Elements to DirectShape   web    
13762015-11-18Connecting Desktop and Cloud at AU and DevDays   web    
13772015-11-19PickPoint with WPF and No Threads   web    
13782015-11-20Drop-down Enumerated Parameter Values   web    
13792015-11-30DevDay@AU and Using a Custom Exporter for 2D   web    
13802015-12-01AU Keynote and Revit API Panel   web    
13812015-12-03AU, IoC, Banks and Not To Delete While Iterating   web    
13822015-12-08Quick, Slow and LINQ Element Filtering   web    
13832015-12-09External Event and 10 Year Forum Anniversary   web    
13842015-12-10REX Add-In Development and Migration   web    
13852015-12-15External Services   web    
13862015-12-16Adding a Stacked Split Button to the Ribbon   web    
13872015-12-17Retrieving Wall Openings and Sorting Points   web    
13882015-12-18Shared Project Parameter GUID Reporter   web    
13892015-12-22Wall Opening Profiles and Happy Holidays!   web    
13902016-01-06Happy New Top CAD Blog, Public Models and Forge   web    
13912016-01-07All Model Text, StringSearch 2016 and New Jobs   web    
13922016-01-08Retrieving All Model Elements   web    
13932016-01-12Idling, DMU, DocumentChanged and Need for Regen   web    
13942016-01-13Loading an IES Photometric Web and Exciting Times   web    
13952016-01-15Era of Connection, Families and Data Handling   web    
13962016-01-19DevDay Conference in Munich and WPF DoEvents   web    
13972016-01-22Tracking Element Modification   web    
13982016-01-29BIM Programming Madrid and Spanish Connectivity   web    
13992016-02-01Modelling Small Details   web    
14002016-02-02What Can Revit on the Cloud Do For You?   web    
14012016-02-03EstoreFile, Group Preview and RoomScheduleCloud   web    
14022016-02-05BIM 360 Docs, Add-In Folders, Stallman and Abc   web    
14032016-02-06Richard Stallman for a Free Digital Society   web    
14042016-02-09Happy Monkey, How To Ask a Question and Debug   web    
14052016-02-23Reorg, FoMT, DevCon, TED, QR, Custom Exporter Quality   web    
14062016-02-24IFC Import Levels and MEP Element Shapes   web    
14072016-02-25Reading an RVT File without Revit   web    
14082016-02-26tbc – The Building Coder Source and Index on GitHub   web    
14092016-03-01API, SDK and View Section Box Element Intersection   web    
14102016-03-02Index, Debug, Curves, Distance, Deleting PrintSetup   web    
14112016-03-03Implementing the TrackChangesCloud External Event   web    
14122016-03-07Entitlement API, Trial Period and Floating License   web    
14132016-03-14Pi Day, Meeting, Ski Tour, Revit Server Bar Separator   web    
14142016-03-18ADN Becomes Forge and Barcelona Accelerator   web    
14152016-03-19Vipassana and Idling versus External Events   web    
14162016-04-01Swami Ma Anand Mazaak Buddhoo   web    
14172016-04-04How to Distinguish Redundant Rooms   web    
14182016-04-05Windows 10 Security Blocks External Command   web    
14192016-04-06Location of Hooks in a Rebar Shape Family   web    
14202016-04-07Forge DevCon, Spring, Impermanence, BIM Cloud   web    
14212016-04-08Determining Wall Cut Area for a Specific Room   web    
14222016-04-11Named Guid Storage for Project Identification   web    
14232016-04-13Determining Wall Opening Areas per Room   web    
14242016-04-14More on Wall Opening Areas per Room   web    
14252016-04-18The pyRevit IronPython Script Library   web    
14262016-04-19Revit 2017, RevitLookup and SDK Samples   web    
14272016-04-20RvtSamples for Revit 2017   web    
14282016-04-21What's New in the Revit 2017 API   web    
14292016-04-22Reference Stable Representation Magic Voodoo   web    
14302016-04-25Room Editor – First Revit 2017 Addin Migration   web    
14312016-04-26Real-Time BIM Update with FireRatingCloud 2017   web    
14322016-04-27Real-Time BIM Update via a Windows Forms Client   web    
14332016-04-28FireRatingCloud Context and Architecture   web    
14342016-04-29Forge and Autodesk University Call for Proposals   web    
14352016-05-02DLL Signature, BIM 2 in UK and AutoCAD.NET   web    
14362016-05-03The Building Coder Samples 2017   web    
14372016-05-11BCF API and Manually Setting Up an Add-In   web    
14382016-05-13Visual Studio 2015 Revit 2017 Add-in Wizards   web    
14392016-05-17Forge Accelerator, DevCon and Answer Day   web    
14402016-05-20Idea Station and TextNote Bounding Box   web    
14412016-05-25Roomedit3d Console Test and Rendering Assets   web    
14422016-05-26Roomedit3d Live Real-Time Socket.io BIM Update   web    
14432016-05-31My Mac Died and I am Alive in Greece   web    
14442016-06-01Filtering for View Specific Elements   web    
14452016-06-02Highlighting Revit Rooms in the Forge Viewer   web    
14462016-06-13Point Boundary Condition and Revit 2017 SDK   web    
14472016-06-16Freeing your BIM Data and Roomedit3d Forge OAuth   web    
14482016-06-17Dynamic Model Updater Tutorial and Wizard Update   web    
14492016-06-22Traversing and Exporting all MEP System Graphs   web    
14502016-06-23MEP System Structure in Hierarchical JSON Graph   web    
14512016-07-05Exporting RVT BIM to JSON, WebGL and Forge   web    
14522016-07-07Retrieving a C# out Argument Value in Python   web    
14532016-07-11Selecting RVT 3D Views for Forge Translation   web    
14542016-07-14Self-Organising Architecture, Voxel-Based Energy Analysis   web    
14552016-07-22IFC Import and Open Source   web    
14562016-08-15Vacation End, Forge News and Bounding Boxes   web    
14572016-08-16Online Revit API Docs and Convex Hull   web    
14582016-08-17UnitUtils Converting Units for Unit Weight   web    
14592016-08-18Consistency of IFC GUID and UniqueId   web    
14602016-08-19Automatically Reload Links After Migration   web    
14612016-08-24Using Routing Preferences to Select and Place a Tap   web    
14622016-08-26Trusted Signature and Revit 2017 API Resources   web    
14632016-08-29Revit Macro Samples Migrated to Revit 2017   web    
14642016-08-31Voodoo Magic Retrieves Global Instance Edges   web    
14652016-09-01Trusted Signature Motivation and Fishing   web    
14662016-09-06Stacked Ribbon Button Panel Options   web    
14672016-09-08Forge and AppStore Online Hackathon Webinars   web    
14682016-09-12HoloLens Escape Path Waypoint JSON Exporter   web    
14692016-09-13MacroManager, Materials and Getting Started   web    
14702016-09-15Avoid CAD Import in RFA, AAG16 and Endtrip   web    
14712016-09-19Roomedit3d Update for Connecting Desktop and Forge   web    
14722016-09-22Forge Webinar Series and Roomedit Starting Points   web    
14732016-09-24The Birth of Roomedit3dv3 and Forge Webinar 2   web    
14742016-09-26Flipping a Section View and Forge Webinar 3   web    
14752016-09-28Roomedit3d Broadcast, Teigha BIM, Forge Webinar 3   web    
14762016-09-29Warning Swallower, Roomedit3d Viewer Extension   web    
14772016-09-30Solid From Bounding Box and Forge Webinar 4   web    
14782016-10-03Retrieving and Broadcasting the Roomedit3dv3 Translation   web    
14792016-10-04Roomedit3dv3 Up and Running with Demo Recording   web    
14802016-10-05Forge Webinars on Design Automation and BIM360   web    
14812016-10-06Need to Commit Twice, Roomedit3dv3 and Forge   web    
14822016-10-07Material Asset Textures, Forge Webinar Recordings   web    
14832016-10-09DirectObjLoader for Revit 2017   web    
14842016-10-17Token Expiry and Online Revit API Docs   web    
14852016-10-18Cool Forge Demos and Roomedit Caveat   web    
14862016-10-19Forge Formats, Webinars and Fusion 360 Client API   web    
14872016-10-20Connecting Desktop and Cloud RTC Material   web    
14882016-10-21RTC Revit API Panel, Idea Station, Edit and Continue   web    
14892016-10-22Revit API Connecting Desktop and Cloud @ TUDa   web    
14902016-10-24How to Create a New Line Style   web    
14912016-10-26Revit Future Direction and Public Roadmap   web    
14922016-10-27AI, Edit and Continue   web    
14932016-10-31AU, Revit 2017.1 SDK and REX FreezeDrawing   web    
14942016-11-02Roomedit3dv3 Diff from Forge Boilerplate Code   web    
14952016-11-03BIM@TuDa, DevDays, Forge News and More Events   web    
14962016-11-09What's New in the Revit 2017.1 API   web    
14972016-11-14DevDay Conference at Autodesk University   web    
14982016-11-15AU Day One, Keynote and DevLab   web    
14992016-11-16AU Day Two, IFC and Revit API Panel   web    
15002016-11-211500 Posts, DevDay and Storing a Dictionary   web    
15012016-11-23Using Other Events to Execute Add-In Code   web    
15022016-11-30BIM 360, Docs, Issues, Forge, DevDay and Accelerator   web    
15032016-12-05Material Shared Parameters and ADN Xtra Labs   web    
15042016-12-07Determining Views Showing an Element   web    
15052016-12-08Restoring a Missing Project Information Element   web    
15062016-12-09Need for Regen and Duplicate Parameter Access   web    
15072016-12-12Parameter Definition Overview   web    
15082016-12-14Forge Formats Python Script and IFC Open Shell   web    
15092016-12-15Viewport Bring to Front and C++ Revit Add-In   web    
15102016-12-20NuGet Revit API Package   web    
15112017-01-02Happy New Year, C++, Crypto and Content   web    
15122017-01-09Distances, Switches, Kiss-ing and a Dino   web    
15132017-01-10RevitLookup Supports Spot Dimension and Escape   web    
15142017-01-11AU in London and Deep Learning   web    
15152017-01-12Virtuous Reproduction, Research, Settings, Ontology   web    
15162017-01-17Vertical Dimensioning and Revit API QAS Research   web    
15172017-01-19TextNote Rotation, DevCon, TensorFlow and Keras   web    
15182017-01-23Schedule Parameters and Shared Parameter GUID   web    
15192017-01-24Dynamic Scripts, Model Elements, Vertical Alignment   web    
15202017-01-25UIView Windows Coordinate Ray Casting Tooltip   web    
15212017-01-26Family Category and Two Energy Model Types   web    
15222017-02-02Revit Server API Lib, Truss Members and Layers   web    
15232017-02-03Multiple Language RESX Resource Files   web    
15242017-02-06RevitLookup Reflection Cross-Version Compatibility   web    
15252017-02-07Moving the Section View Location   web    
15262017-02-09Setting Active View During Idling   web    
15272017-02-13Revit MEP Connector Number   web    
15282017-02-14New Visual Studio Templates for Revit Add-Ins   web    
15292017-02-17RevitLookup with Reflection Cleanup   web    
15302017-02-20Add-In Templates Supporting Edit and Continue   web    
15312017-02-22RevitLookup Extensible Storage Restored   web    
15322017-02-27Revit API Docs 2.0 Beta   web    
15332017-02-28RVT Properties to XLS and Forge Accelerators   web    
15342017-03-02RevitLookup and DevDays Online API News   web    
15352017-03-04WPF Revit Family Browser and Vacation   web    
15362017-03-13Q4R4 – Revit API Question Answering System   web    
15372017-03-14Events, UV Coordinates and Rooms on Level   web    
15382017-03-15Family Bounding Box and AEC Hackathon Munich   web    
15392017-03-16Q4R4 tbc Import and RevitLookup   web    
15402017-03-17Elasticsearch-Head, RevitLookup and Area Schemes   web    
15412017-03-20TTT to Obtain Section Marker Endpoint   web    
15422017-03-23RvtFader, AVF, Ray Tracing and Signal Attenuation   web    
15432017-03-26WTA Elec, FireP and 3D Aimer Tools   web    
15442017-03-29Adding Custom Geometry to the Forge Viewer   web    
15452017-03-30Three.js Raytracing in the Forge Viewer   web    
15462017-03-31WTA Mech and TTT for Provision for Voids   web    
15472017-04-05Work Half, AKS Opener, RvtFader and ForgeFader   web    
15482017-04-06ForgeFader, Lookup Builds, Purge & Room Instances   web    
15492017-04-18Forgify   web    
15502017-04-22RevitLookup 2018 and Forge DevCon CFP   web    
15512017-04-25What's New in the Revit 2018 API   web    
15522017-04-27Revit 2018 Visual Studio .NET Add-in Wizards   web    
15532017-04-28Women Coders, Forge and Revit API Docs Updates   web    
15542017-05-03Wall and Opening Tessellation   web    
15552017-05-09External Access to the Revit API   web    
15562017-05-11Prompt Cancel Throws Exception in Revit 2018   web    
15572017-05-17API Access to Family Instance References   web    
15582017-05-19Finding the Right Project Location   web    
15592017-05-22Hotfix Resolves Export and Print Issue   web    
15602017-05-23Revit 2017 and 2018 SDK Samples   web    
15612017-05-29Retrieving Elements Visible in View   web    
15622017-05-31SDK Update, RvtSamples and Setting Grid Endpoint   web    
15632017-06-01AI News and Sub-Transaction Regen   web    
15642017-06-06Sensors, BIM, AI, RevitLookup, Fuzzy Comparison   web    
15652017-06-12Hatch Line Dimensioning Voodoo   web    
15662017-06-13Aligning a Slightly Off-Axis Grid   web    
15672017-06-15Handling Third Party Library DLL Conflicts   web    
15682017-06-16Determining Dimension Segment Endoints   web    
15692017-06-21Finding an Exit Path and ElementId Parameter Values   web    
15702017-06-22Determining RVT File Version Using Python   web    
15712017-06-23FindInserts Determines Void Instances Cutting Floor   web    
15722017-06-27Copy Local False and IFC Utils for Wall Openings   web    
15732017-06-30Picked Instance Face Geometry in LCS Versus WCS   web    
15742017-07-16Dockable Pane, Point Cloud, AI, BIM360, Forge, AU   web    
15752017-08-07BIM 360 Hackathon and Bounding Boxes   web    
15762017-08-08Revit 2018.1 and the Visual Materials API   web    
15772017-08-10Revit versus Forge, Ids and Add-In Installation   web    
15782017-08-17Forge, Installed Version, Move Group, Name Filter   web    
15792017-08-18Unit Abbreviations   web    
15802017-08-22Birthday Post on the XYZ Class   web    
15812017-08-28Edge Loop, Point Reference Plane and Column Line   web    
15822017-09-01NuGet Package Update, Rooms and Views in Forge   web    
15832017-09-11Use Forge or Spreadsheet to Create Shared Parameters   web    
15842017-09-12ExtentElem and Square Face Dimensioning References   web    
15852017-09-13Forge DevCon at AU in Darmstadt and Las Vegas   web    
15862017-09-19Revit 2018.1.1 API Docs and CropBox Setting   web    
15872017-09-20ADN Xtra Labs and API Changes since Revit 2013   web    
15882017-09-26My First Revit Plugin Enhancements   web    
15892017-09-27Revit Server Download and Hiding Point Cloud Scan   web    
15902017-09-29Vacation and Open Source Code Licenses, Again   web    
15912017-10-15Modeless Form Keep Revit Focus and On Top   web    
15922017-10-16Disjunct Planar Face Outer Loops   web    
15932017-10-17Rational BIM Programming at AU Darmstadt   web    
15942017-10-19AU Recording, Books, Education and Units   web    
15952017-10-20Do Not Reuse an Existing GUID   web    
15962017-10-23Material Texture Path   web    
15972017-10-25Curtain Wall Panel Geometry with Basic Wall Panel   web    
15982017-10-30Forge DevCon in Las Vegas   web    
15992017-11-01Forge DevCon Highlights   web    
16002017-11-09Purge and Detecting an Empty View   web    
16012017-11-13Deleting a Global Parameter and RevitPythonShell   web    
16022017-11-16Migrating PlaceInstances to Revit 2018   web    
16032017-11-20Modifying Material Visual Appearance   web    
16042017-11-22Revit API Panel @ AU Las Vegas 2017   web    
16052017-11-28Cloud Model Predicate, and Set Parameter Regenerates   web    
16062017-11-29Avoid Exorbitant Coordinates   web    
16072017-11-30Automatic Wall Creation   web    
16082017-12-05Creating Face Wall and Mass Floor   web    
16092017-12-11What's New in the Revit 2018.2 API   web    
16102017-12-12How to Use GetAnalyticalModelSupports   web    
16112017-12-13Pipe Fitting K Factor, Archi+Lab and Installer   web    
16122017-12-20Setting Parameter Varies Between Groups   web    
16132017-12-21Project Identifier and Fuzzy Comparison   web    
16142017-12-22Magic Number, Magic Automation and Magic Season   web    
16152018-01-09DirectShape Topics and Happy New Year!   web    
16162018-01-10Transform Utils, DirectShape Builder and DevDays Online Webinars   web    
16172018-01-16AreaLoad Force Direction, CMake and SDK Access   web    
16182018-01-17Autodesk University Past and Future   web    
16192018-01-19Revit Tools for MomenTUM Pedestrian Simulation   web    
16202018-01-24Create Swept Blend DirectShape in C++   web    
16212018-01-31Gathering and Returning Failure Information   web    
16222018-02-01Efficiently Retrieve Crop Box for Given View   web    
16232018-02-02Rotation Adjusts Conduit End   web    
16242018-02-06DirectShape from BrepBuilder and Boolean   web    
16252018-02-07MergedViews and Exporting to a Single DWG   web    
16262018-02-11NewFamilySymbolProfile Sample Add-In   web    
16272018-02-12DevDays, Keynote Manager and REX Extensions   web    
16282018-02-21Retrieving Newly Created Element Ids   web    
16292018-02-27Changing Text Colour   web    
16302018-03-01Updated ADN Web Site, Revit API Labs, Tag Creation   web    
16312018-03-02Export Geometry and Snoop Stable Representation   web    
16322018-03-06Create 2D Arc and Filter for Intersecting Elements   web    
16332018-03-08Switch View or Document by Showing Elements   web    
16342018-03-12RevitLookup Search by Element and Unique Id   web    
16352018-03-13Contextual Help Best Practice   web    
16362018-03-19Connector, Neighbour, Conduit, Transition   web    
16372018-03-21Boston Forge Accelerator and Aligning Plan Views   web    
16382018-03-26Dynamo on the Web?   web    
16392018-04-03Using Intersection Filter with Linked File   web    
16402018-04-05Standalone BasicFileInfo and ExtractPartAtom   web    
16412018-04-10Revit 2018.3, SetValueString and External Events   web    
16422018-04-11Bounding Box Filter is Always Axis Aligned   web    
16432018-04-13Compiling the Revit 2019 SDK Samples   web    
16442018-04-16RevitLookup 2019 and New SDK Samples   web    
16452018-04-19Forge RVT to IFC, ADN Xtra, TBC, AdnRme Updates   web    
16462018-04-24RvtSamples 2019   web    
16472018-04-25What's New in the Revit 2019 API   web    
16482018-04-26What’s New Webinar and Forge vs. A360   web    
16492018-04-27New Opportunities in the Forge Evangelist Team   web    
16502018-05-02Scaling a Bitmap for the Large and Small Image Icons   web    
16512018-05-08How to use FilterCategoryRule   web    
16522018-05-14Parameters, Walls and Driving Revit via WCF Service   web    
16532018-05-16Foreground Image Import and Visible DWG Geometry   web    
16542018-05-17Getting All Parameter Values   web    
16552018-05-18Installing the Revit 2019 SDK April Update   web    
16562018-05-24FilterRule Use and Retrieving Exterior Walls   web    
16572018-05-25Multi-Target Add-Ins, AI, Markdown and Job Offer   web    
16582018-05-31Exported File Path and Revit Structural Analysis SDK   web    
16592018-06-01Forge Tutorials and Filtering for a Parameter Value   web    
16602018-06-04Revit 2019 SDK and My First Plugin Update   web    
16612018-06-07Extensible Storage and Renaming Family in Project   web    
16622018-06-11Creating a Warning Using the Failure API   web    
16632018-06-13Simplifying Nested Family Instances   web    
16642018-06-14Forge for AEC and BIM360 Overview   web    
16652018-06-15REX SDK Templates for Revit Structure 2019   web    
16662018-06-16BIM360 and Forge for AEC Message and Samples   web    
16672018-06-21BAM Digital Construction and Drawing a Model Line   web    
16682018-06-28Multi-Targeting Revit Versions, CAD Terms, Textures   web    
16692018-06-29Add-In Registration – VendorId and Signature   web    
16702018-07-17Vacation and Multi-Version Revit Add-In Template   web    
16712018-07-29Mindful Living and Smiling to Myself   web    
16722018-08-08Wall Profile Command Update   web    
16732018-08-17Revit 2019.1, CEFSharp, Forge Accelerator in Rome   web    
16742018-08-20Revit Unit Test Framework Improvements   web    
16752018-08-22Ten Years Anniversary, MVVM, WPF and WinForm   web    
16762018-08-23What's New in the Revit 2019.1 API   web    
16772018-08-27Colleagues Deleting Non-Shared Project Parameter   web    
16782018-08-28Purge Unused using Performance Adviser   web    
16792018-09-04Reference Intersector and Deleting Reference Planes   web    
16802018-09-05Icon Access and Reference Plane in Family Instance   web    
16812018-09-06Revit 2019 Visual Studio .NET Add-in Wizards   web    
16822018-09-10Five Secrets of Revit API Coding   web    
16832018-09-11Support DLL, Zero Doc State and Forge Accelerators   web    
16842018-09-13Rebar, Wall Centreline, Core and Grid Dimensioning   web    
16852018-09-14Reality Solutions SDK Enables RCP File Read-Write   web    
16862018-09-20Roadmap, CI for RTF, Geometry Library Limitations   web    
16872018-09-21DevCon Europe and Typepad versus Google Search   web    
16882018-09-24That BIM Girl and AskNow   web    
16892018-09-25Swallowing StairsAutomation Warnings   web    
16902018-09-26Auto-Run an Add-In for Design Automation   web    
16912018-09-27Floor Area Above Room and Mysterious Hide   web    
16922018-09-28Protecting a Family from Tampering   web    
16932018-10-10Forge DevCon in Darmstadt and Las Vegas   web    
16942018-10-15Revit Add-In Locations and BIM360 EU   web    
16952018-10-16Forge Design Automation for Revit   web    
16962018-10-17BIM 360 Issues API   web    
16972018-10-22Resources, Rotated Rebar Stirrups and Steel Stuff   web    
16982018-10-30Tailor Your BIM with F#, Forge, IFC and Takeoffs   web    
16992018-11-01View Template Include Setting   web    
17002018-11-10More on Transaction Groups and Assimilation   web    
17012018-11-14Design Automation for Revit at AU and in Public   web    
17022018-11-15Revit Window Handle and Parenting an Add-In Form   web    
17032018-11-19Dashboard, Regen and Revit API Panel at AU   web    
17042018-11-27Efficient and Elegant Code   web    
17052018-12-01AutoCAD Architecture 2019 API Documentation   web    
17062018-12-04Forge DevCon Keynote and BIM360 Model Access   web    
17072018-12-07Using an Intersection Filter for Linked Elements   web    
17082018-12-10Fire Rating Zone Intersection   web    
17092018-12-11Rebars in Host, .NET Framework, Importance of Fuzz   web    
17102018-12-13Dynamo, Symbol vs Type and Exporter Exception   web    
17112018-12-17Accessing Dimension Line Weight   web    
17122018-12-18Python Rotate Picked Around Bounding Box Centre   web    
17132019-01-07Room Boundaries to CSV and WPF Template   web    
17142019-01-08pyRevit Keynote Manager and Becker Forge Blog   web    
17152019-01-15Retrieving Linked IfcZone Elements Using Python   web    
17162019-01-18New RevitLookup Snoops Edges, Faces and Links   web    
17172019-01-22Face Methods and Custom Command Line Arguments   web    
17182019-01-29Design Automation for Revit in Public Beta   web    
17192019-02-01Link in and Analyse IFC File Zones and Spaces   web    
17202019-02-05Preparing a Revit Add-in for Design Automation   web    
17212019-02-06Aborting Filtered Element Collection   web    
17222019-02-07Stable Reference Relationships   web    
17232019-02-12Accessing and Modifying Settings in the Ini File   web    
17242019-02-14Creating a Sweep with Multiple Closed Loops   web    
17252019-02-19Register for DevDays Online   web    
17262019-03-01Forum Français and Treeview Performance   web    
17272019-03-04AI, Trends and Yearly API Usage Cleanup   web    
17282019-03-06Assigning a Level to an Element Missing It   web    
17292019-03-13Before Getting Started with Design Automation   web    
17302019-03-18Retrieving and Snooping Dependent Elements   web    
17312019-03-20Scaling, Face and Mesh Triangle Normals   web    
17322019-03-26Forge Picture, Debugging, Snooping Appearances   web    
17332019-03-28Determine Exact Opening by Demolishing   web    
17342019-04-01Binding a Shared Parameter to Revision   web    
17352019-04-02Setting Material Texture Path in EditScope   web    
17362019-04-08Slow, Slower Still and Faster Filtering   web    
17372019-04-10Set Floor Level and Use IPC for Disentanglement   web    
17382019-04-12The Revit 2020 FCS, API and SDK   web    
17392019-04-20RevitLookup and SDK for Revit 2020   web    
17402019-04-23What's New in the Revit 2020 API   web    
17412019-04-24Close Doc and Zero Doc RvtSamples   web    
17422019-04-25Batch Processing and Aspects of AsStringValue   web    
17432019-04-26Forge DA4R IFC Support and Snoop Enhancements   web    
17442019-04-29New Revit 2020 SDK Samples   web    
17452019-04-30Revit 2020 C# and VB Visual Studio Add-in Wizards   web    
17462019-05-02Location Point and Filtering Hints   web    
17472019-05-06AI, Boundaries, Loops and RevitApiDocs 2020   web    
17482019-05-07Spatial Geometry, Add-In Manager and Show Reels   web    
17492019-05-09Rapid Prototyping, Testing and Deployment   web    
17502019-05-13Tagging a Linked Element   web    
17512019-05-16Filtered Element Collector Benchmark   web    
17522019-05-20Precast API and Cloud Open Callback   web    
17532019-05-21Secret Reference Line Faces   web    
17542019-05-23Retrieving Section View Intersection Cut Geometry   web    
17552019-05-28DirectShape Element to Represent Room Volume   web    
17562019-06-03Access BIM360 Cloud Links, Thumbnail and Dynamo   web    
17572019-06-04SketchIt, Lookup Family Types, Definition Names   web    
17582019-06-21Revit Camera Settings, Project Plasma, DA4R and AI   web    
17592019-06-25Accelerator, Dash Pattern Fix, Rotation and Phase   web    
17602019-06-28Room Closed Shell DirectShape for Forge Viewer   web    
17612019-06-29Room Volume glTF Generator   web    
17622019-07-08Element Identifiers in RVT, IFC, NW and Forge   web    
17632019-07-11BIM365 Getting Started, Materials API, CPU Voltage   web    
17642019-07-24Roadmap, Rebar Curves, Wizard Zip and More   web    
17652019-08-05Auto-Dimension Filled Region Boundary   web    
17662019-08-09New PC, KLH Snoop, Annotations and Vertex Handling   web    
17672019-08-14IFC Update, Instance Geometry, Parameters   web    
17682019-08-15MEP Ductwork and Changing Pipe Direction   web    
17692019-08-16Revit API and Design Automation API Survey   web    
17702019-08-19Zero Touch Node Wrapper and Load from Stream   web    
17712019-08-2211 Years and Revit API Docs Full Text Search   web    
17722019-08-23Auto-Executing an External Command   web    
17732019-09-02Face Intersect Face is Unbounded   web    
17742019-09-03Parameters and Hiding DirectShape Edges   web    
17752019-09-04GetSimilarTypes, SnappingService and Title Labels   web    
17762019-09-05API Survey and Forge DevCon   web    
17772019-09-06TLS Requirement, PDF Data and Collada DAE Exporter   web    
17782019-09-10Cylinder Intersection and Vision of Online Assets   web    
17792019-09-11pyRevit Home and ApiDocs Code Sample Collection   web    
17802019-09-17Scaling an Add-In for a 4K High Resolution Screen   web    
17812019-09-18What's New in the Revit 2020.1 API   web    
17822019-09-24DevCon, Sun with True North and RVT without Revit   web    
17832019-09-25UI Top Forms, Buttons, Web, etc.   web    
17842019-09-26Extensible Storage, External Event, DLL, Pipe Face   web    
17852019-10-01Get Project Parameter Id and Prevent Updater Loop   web    
17862019-10-03Pet Change – Python + Dynamo Swap Nested Family   web    
17872019-10-07Starter Kit, Books and Music   web    
17882019-10-08TestRunner – Run Unit Tests in Revit   web    
17892019-10-15Secret Series 2, CAD Link Status and DWG Blocks   web    
17902019-10-17Dynamic Model Updater Macro   web    
17912019-10-21Design Automation API for Revit Going Public   web    
17922019-10-24DevCon Invitation and Dynamo for Infrastructure   web    
17932019-10-31Generating Graphics and Collecting Assets   web    
17942019-11-04Initiating BIM360 Collaboration and Linking   web    
17952019-11-05Material, Physical and Thermal Assets   web    
17962019-11-06Visual Studio 2019 Revit Add-in Template Tags   web    
17972019-11-07Automated PDF Report and 2D Sketch Booleans   web    
17982019-11-12Curve Projection, Detach and FBX in DA4R   web    
17992019-11-19DLL Conflicts and Replicating Schedule Sort Order   web    
18002019-11-20Integrating the Helix 3D Viewer with a WPF Add-In   web    
18012019-11-21The Revit Batch Processor RBP   web    
18022019-11-26Retrieving the Electrical Load from a Fixture   web    
18032019-11-28Design Automation API, Stacks, Collectors and Links   web    
18042019-12-02Cyrillic Lookup, Moving Grids and Combining Edges   web    
18052019-12-09Comparing Symbols and Comparison Operators   web    
18062019-12-10Forge Rooms, Effective Filtered Element Collectors   web    
18072019-12-18Dashboard, CreateViaOffset and Room Outer Outline   web    
18082019-12-19DA4R, FindInserts, Deployment and SplitButton   web    
18092020-01-08Extrusion Analyser and 2D Boolean Element Outline   web    
18102020-01-10Unit Migration Toggle Imperial and Metric Project Unit   web    
18112020-01-14Swissbau Basel and Comparing Family Part Atoms   web    
18122020-01-16C# Book, Chinese Revit API Tutorial and Insight   web    
18132020-01-21Torsion Tools, Command Event and Info in DA4R   web    
18142020-01-23Unit Testing and the UsesInstanceGeometry Method   web    
18152020-01-28DevDays Online and Add-In Migration   web    
18162020-01-30Revit WPF Add-Ins and Template   web    
18172020-02-05External Communication and Async Await Event   web    
18182020-02-11Search for Getting Started Tutorials and Videos!   web    
18192020-02-12Ini File, Localisation and Torsion Tools Two   web    
18202020-02-13Getting Title Block Data and ViewSheet from View   web    
18212020-02-19Lat Long to Metres and Duplicate Legend Component   web    
18222020-02-21Multi-Threading Family Instance Placement Monitor   web    
18232020-02-2524x24 StackedItem, Ribbon Utils, Journal Encoding   web    
18242020-02-27Adjust Wall Location Curve and Visual Presentation   web    
18252020-03-03Coding, Interior Elevations and Command Line Opts   web    
18262020-03-05Another Async Await, REX + Structural Analysis SDK   web    
18272020-03-11Split Pipe   web    
18282020-03-12Panel Schedule Slots and Changing Room Level   web    
18292020-03-17Splitting a Duct in More Depth   web    
18302020-03-20Command Binding Conflicts and Face UV Coords   web    
18312020-03-26Autorouting and Reference for CreatePipeConnector   web    
18322020-03-30Satellite Images and Instance Transforms   web    
18332020-04-02Stair Point References, BIM360 Users, Zoom, Jobs   web    
18342020-04-09Revit 2021 Cloud Model API   web    
18352020-04-14RevitLookup 2021 with Multi-Release Support   web    
18362020-04-16What's New in the Revit 2021 API   web    
18372020-04-20Revit 2021 Unit Types in Family Type Catalogues   web    
18382020-04-212021 Migration, Add-In Language, BIM360 Research   web    
18392020-04-27DA4R I/O, Logging, Updater and Custom Properties   web    
18402020-04-28Revit Camera FOV, Forge Partner Talks and Jobs   web    
18412020-04-30References to Symbol versus Instance Geometry   web    
18422020-05-07Convex Outer Loop, Non-Migration and 15-Year Stint   web    
18432020-05-11Compiling the Revit 2021 SDK Samples   web    
18442020-05-14Setting up RvtSamples for Revit 2021   web    
18452020-05-19Using ReferenceIntersector with a Linked File   web    
18462020-05-29Automatically Open Correct RVT File Version   web    
18472020-06-02Split Pipe Tutorial and Related Cases   web    
18482020-06-03Revit 2021 Visual Studio Add-in Templates   web    
18492020-06-08Changing Element Colour and Material   web    
18502020-06-16Creating Material Texture and Retaining Pixels   web    
18512020-06-22Duct Shape, BipChecker Facelift and @ Fonts   web    
18522020-06-25Section to Crop, Linked Boundary and Intersection   web    
18532020-07-07Virtual AU and AEC Hackathon, Units and DAS Job   web    
18542020-07-10Selection in Link, Cancel in Export, Multithreading   web    
18552020-07-22Revit 2021.1 and Normalising Custom Export UV   web    
18562020-07-24IFC 21.1 and AEC Hackathon Presentations   web    
18572020-07-28Cyrillic Encoding and Categories for Legends   web    
18582020-08-04Revit 2021.1 SDK and What's New   web    
18592020-08-12Compile and Compare Revit 2021.1 SDK Samples   web    
18602020-08-17RevitLookup Continuous Integration and GraphQL   web    
18612020-08-26Custom Parameters and Tile Packing   web    
18622020-09-01Preview, Code Signing and Element Type Predicates   web    
18632020-09-09Optimising Parameters and Full-Text Search   web    
18642020-09-10Inside the Factory – Ask me Anything – Today!   web    
18652020-09-21On Spaces in Help and Renaming a Parameter   web    
18662020-09-22Quo Vadis Revit   web    
18672020-10-01Forge Design Automation and DesignScript   web    
18682020-10-06High Performance Outline, Line-Plane Intersection   web    
18692020-10-13Avoid Brain Racking by Using Using   web    
18702020-10-14Save and Restore 3D View Camera Settings   web    
18712020-10-21FireRevit, Deprecated API and Elbow Centre Point   web    
18722020-10-28Onbox, DirectContext Jig and No CDN   web    
18732020-11-03Custom Export Precision, Sheet Metadata, Project Id   web    
18742020-11-11Doc Session Id, API Context and External Events   web    
18752020-11-13BIM360 Scripts, Dotnet Template and Prism Goodies   web    
18762020-11-16DA4R Cannot Save Directly to Cloud   web    
18772020-11-17Join the Revit API Expert and Feedback Roundtable   web    
18782020-11-20Expand your App – Integrate and Leverage Cloud   web    
18792020-11-26Revit API Roundtable Notes   web    
18802020-12-04Dynamo Book and Texture Bitmap UV Coordinates   web    
18812020-12-09Simple IUpdater and other TBC Updates   web    
18822021-01-06Line Subcategory Filter, Modification Tracker and NW   web    
18832021-01-11Forge at AU and Open Source Property Access   web    
18842021-01-14Transient Graphics, Humane AI, BI and Lockdown   web    
18852021-01-19I18n, Forge Accelerators, AEC and BIM360 Focus   web    
18862021-01-20Sketch-Based Creation and Editing API Preview   web    
18872021-01-21Sheet View Xform, Coords, Img Export and Title Block   web    
18882021-01-27Face Triangulation LOD, .NET 5 and Core   web    
18892021-01-29Parameter Filter Checking Element Type and OCR   web    
18902021-02-02Splits: Persona, Collector, Region, Tag, Modification   web    
18912021-02-05Birthday, DevDays, PostCommand + SendKeys   web    
18922021-02-11Model Group and DA4R Language in Forge   web    
18932021-02-17Addin File, Learning Python and IFC.js   web    
18942021-03-03Naughty Updaters, DIY Add-In Manifest, GD, AI, etc.   web    
18952021-03-10Exterior Walls and Room Bounding Elements   web    
18962021-03-15Boundary Elements and Stirrup Constraints   web    
18972021-03-23Forge, RevitApiDocs, Materials and Stacked Items   web    
18982021-04-06Sneak Peek, Automatic Column, Arc Angle, Career   web    
18992021-04-08Revit 2022 Released   web    
19002021-04-14PDF Export, ForgeTypeId and Multi-Target Add-In   web    
19012021-04-15Revit 2022 Migrates BIM360 Team to Docs   web    
19022021-04-21Revit 2022 SDK and The Building Coder Samples   web    
19032021-04-23What's New in the Revit 2022 API   web    
19042021-05-04Roadmap Today and Sorting Non-Planar Curve Loops   web    
19052021-05-13Refreshment, Cloud Model Path, Angle and Direction   web    
19062021-05-20RevitLookup Update, Fuslogvw and Override Joins   web    
19072021-05-26Flip, Mirror, Transform and Transient Graphics   web    
19082021-06-14ForgeTypeId and Units Revisited   web    
19092021-06-22Painting Stairs and Shooting for the Beams   web    
19102021-06-30Topo from Lines, Asset Keyword and Regeneration   web    
19112021-07-07Installer, List of Failures, Adjacent Rooms and Walls   web    
19122021-07-14Collaboration, Dockables, Railings, Pop-Ups, ILSpy   web    
19132021-07-23Autodesk University 2021, Python, Fuzz and Break   web    
19142021-08-18Triangle Count, New Floor and Slab Creation   web    
19152021-08-25Revit Roadmap, API and DA4R Survey   web    
19162021-08-31Nina and a VS Revit Add-In Extension   web    
19172021-09-06View Sheet from View and Select All on Level   web    
19182021-09-15Kfpopeye Open Source, AVF and Other Cleanup   web    
19192021-09-24Snooping Parts, C# Templates and Python Topics   web    
19202021-10-01Localised Forge Intros and Apply Code Changes   web    
19212021-10-04Hiding Edges, AU, Roadmaps and Vasa   web    
19222021-10-12DLL as Resource and Multi-Version Add-Ins   web    
19232021-10-14Sci-Fi, Languages and Pipe Insulation Retrieval   web    
19242021-10-26Bridges, Regeneration and Modeless RevitLookup   web    
19252021-11-02Revit 2022.1 SDK, RevitLookup Build and Install   web    
19262021-11-08What's New in the Revit 2022.1 API   web    
19272021-11-10WallCrossSection Renaming in the Revit 2022.1 API   web    
19282021-11-11New Analytical Model API   web    
19292021-11-19Installer Asset, FormIt and Quaterions   web    
19302021-11-25Revit Server and View Filter Alert   web    
19312021-12-07Logging and Monitoring Deleted Data   web    
19322021-12-17Symbol, Instance, Material, Data, Journal, Break   web    
19332021-12-21RevitTemplates Update 1.7.0   web    
19342022-01-04Happy New Year with RevitExtensions   web    
19352022-01-19Detailed 2D Text and Other Element Geometry   web    
19362022-01-26Add-In Manager, FormulaManager and Tiger Year   web    
19372022-02-02Getting Started Once Again   web    
19382022-02-10Utility Classes and Constraining Stirrups   web    
19392022-02-15Purge Unused and eTransmit for DA4R   web    
19402022-02-22ACC Summit, Model Properties, Copy Relationships   web    
19412022-03-10Drilling Holes in Beams and Other Projects   web    
19422022-03-23RevitLookup, WPF, Preventing Modification   web    
19432022-03-30Purge Unused and the Autodesk Camel   web    
19442022-04-01Revit Macro User Survey   web    
19452022-04-05Revit 2023 and RevitLookup 2023   web    
19462022-04-07Compiling the Revit 2023 SDK Samples   web    
19472022-04-13What's New in the Revit 2023 API   web    
19482022-04-26TBC Samples 2023 and the New Structural API   web    
19492022-04-29Unique Id and IFC GUID Parameter   web    
19502022-05-03Forge Data Days and JoinGeometryUtils   web    
19512022-05-09Revit 2023 API Docs and Disabling an Error Failure   web    
19522022-05-11Analysis of Macros, Journals and Add-In Manager   web    
19532022-05-19Structural Questions and the Future of REX   web    
19542022-06-07Parameters, Snippets, Batch Mode and Self-Signing   web    
19552022-06-15Corridor Skeleton, Copy and Paste API   web    
19562022-06-29Outer Walls, Lookup Update and Filtering   web    
19572022-07-07MEP API Intro and RevitPythonShell Lookup Nuptials   web    
19582022-07-12Tag Extents and Lazy Detail Components   web    
19592022-07-22Immutable UniqueId and Revit Database Explorer   web    
19602022-08-17IFC Property Set, Bulk Instances and Vary by Group   web    
19612022-08-24Instances in Room and Need for Fuzz   web    
19622022-08-26Home Planet and to Dy or Not to Dy   web    
19632022-09-02Point Clouds, Coloured Triangles and Faces   web    
19642022-09-08Deleting Storage and Picking a Symbol   web    
19652022-09-26Aligning Connectors   web    
19662022-09-28APS, AU, and Miter Wall Join for Full Face   web    
19672022-10-06BIM360 Links and Programming Add-Ins   web    
19682022-10-12Element Level and IFC Properties   web    
19692022-10-21Can You Avoid Chaining Idling?   web    
19702022-10-27WebView2, LandXML, RefPlane and Revision   web    
19712022-11-04Unit Test Your Revit Add-In   web    
19722022-11-11APS Accelerator and Reloading a Purged Family   web    
19732022-11-26Extensible Storage Schema Deletion   web    
19742022-11-2964-Bit Element Ids, Maybe?   web    
19752022-12-07APS, Nairobi and NetTopologySuite   web    
19762022-12-13Exploring ARM, ChatGPT, Nairobi and the TSP   web    
19772023-01-03CultureInfoChanger and IronPython3   web    
19782023-01-11SDK, Add-In Wizard and TrackChanges Updates   web    
19792023-01-18New Roadmaps, Dark Theme Possibility Looming   web    
19802023-01-24Roadmap AmAs and Handling Multiple Updaters   web    
19812023-02-08Back to Basics and ChatGPT   web    
19822023-02-14Pyramid Builder, CommandLoader, et al   web    
19832023-02-24Geometry Options and Clean Simple Curves   web    
19842023-03-07Lookup Ideas, Jigs and ACC Docs Access   web    
19852023-03-14IFC, Dimension and Reference Intersector with Links   web    
19862023-03-23.NET Assembly and DirectShape Libraries   web    
19872023-03-31UV, Emergence, Fuzz and the get_ Prefix   web    
19882023-04-08Revit 2024 and RevitLookup 2024   web    
19892023-04-11What's New in the Revit 2024 API   web    
19902023-04-20News Reel, Roadmap and RevitLookup Updates   web    
19912023-04-26Nice Accelerator and Compiling the Revit 2024 SDK   web    
19922023-04-28Configuring RvtSamples 2024 and Big Numbers   web    
19932023-05-10Dark Icons, NewFamilyInstance and AI News   web    
19942023-05-16Aligning Elements, Finding and Visualising Wires   web    
19952023-05-2364 Bit Ids, Revit and RevitLookup Updates   web    
19962023-06-01Sustainability, Lookup, Sub-Elements and Wall Types   web    
19972023-06-13BRepBuilder and Toposurface Interior   web    
19982023-06-20Unit Testing and Arc Dimensioning   web    
19992023-07-07Docs, Lookup, MEP Calculation and APS DevCon   web    
20002023-07-11RBP, Materials, Their Assets and the Visual API   web    
20012023-07-18Bounding Boxes Axis Alignment and Transformation   web    
20022023-07-27Export, gbXML and Python Tips   web    
20032023-08-04Resx Language Management and APS DevCons   web    
20042023-08-17GasTools, Cmd Ids, Key Schedule et al   web    
20052023-08-2315 Years, Polygon Areas and .NET Core   web    
20062023-09-01Add-In Threads and Geometry Comparison   web    
20072023-09-13System Family Predicate and Python Section Creation   web    
20082023-09-19Element Diff Compare, Shapely and RDBE   web    
20092023-09-25OptionsBar and Bye Bye to DA4R 2018   web    
20102023-10-03No Geometry, Touching Geometry and Cut Geometry   web    
20112023-10-20Xgbxml Fixes Building Geometry Gaps   web    
20122023-10-25DLL Paradise and a Fall   web    
20132023-10-28Pernickety Blogging   web    
20142023-11-02Contour Lines, Batch Processor and Dynamo Shapely   web    
20152023-11-11Revit 2024.2 Update with UDA Preview   web    
20162023-11-14Journal Magic, Adjacent Rooms and Room Boundary   web    
20172023-11-24.NET Core Preview and Open Source Add-In Projects   web    
20182023-11-29Camera Target and Toposolid Subdivision Material   web    
20192023-12-123D View, Curved Section and Browser Round-Trip   web    
20202023-12-21Parameters and .NET Core Webinar   web    
20212024-01-05Dependency Injection and Model Checker API   web    
20222024-01-12Journals, Logging, Progress Bar, AEC, AI and CO2   web    
20232024-01-19DirectContext3D, Ids and Linked Section Elements   web    
20242024-01-26Valid Revit API Context, LLM and LTG   web    
20252024-02-02Retrieve Rooms, Build a Schema, Sort and Animate   web    
20262024-02-08.NET Core, C4R Views and Interactive Hot Reloading   web    
20272024-02-18Refresh Graphics, Start View and Excel   web    
20282024-02-22Interactive BIM Notebook, Temporary Graphics and AI   web    
20292024-03-11API Context, APS Toolkit and DA4R Debugging   web    
20302024-03-19Camera Settings, Doors Traversed, Script on the Fly   web    
20312024-03-29Change Pipe Level and PreviewControl Border   web    
20322024-04-05Revit 2025 and RevitLookup 2025   web    
20332024-04-08The Building Coder Samples 2025   web    
20342024-04-15RevitLookup Hotfix and The Revit 2025 SDK   web    
20352024-04-17Migrating from .NET 4.8 to .NET Core 8   web    
20362024-04-22What's New in the Revit 2025 API   web    
20372024-05-09Migrating VB to .NET Core 8 and AI News   web    
20382024-05-13Lengthen Ducts and Highlight Links   web    
20392024-05-21RevitLookup Updates, Bounding Boxes and Podcast   web    
20402024-05-28Revit 2025.1 and Handling Lack of UI in DA   web    
20412024-06-05Revit 2025 API Video and Hiding Linked Elements   web    
20422024-06-10Removing Docs Zip Files, Panels and Buttons   web    
20432024-06-13RevitLookup Geometry Visualisation   web    
20442024-06-20Entitlement API for Revit, Licensing for Add-Ins   web    
20452024-06-27Length Query and RevitLookup Heralds DLL Paradise   web    
20462024-07-03Material Assets, Chromium and Sorting Schedules   web    
20472024-07-12APS Accelerator and Q4R4 Chunking with Claude   web    
20482024-07-30Stable Parameter Identifier and WebView2 Plans   web    
20492024-08-05Link Filter, Ceiling and Link Hatch Dim Voodoo   web    
20502024-08-13Modeless Add-Ins and PDF Printing Speed   web    
20512024-08-27API Context, Background Process, PostCommand   web    
20522024-09-06Element Visibility and Multi-Version Add-In Code Base   web    
20532024-09-12MEP Cable Tray Bend and Tee Analysis   web    
20542024-09-22Solid Boolean Operation Alternatives   web    
20552024-09-26RevitLookup 2025.0.9   web    
20562024-10-02Join Beams and Solid from Face   web    
20572024-10-10Unload Links Offline and Filter for Types   web    
20582024-10-18Determine RVT Version and Add Data from EXE   web    
20592024-10-23AU API Wishes and Revit 2025.3   web    
20602024-11-07DevCon, AI for Revit API, Modeless Add-Ins, Leave   web    
20612025-01-02Back Again to Unit Test, Icons, Viewports and More   web    
20622025-01-08LLM Prompting, RAG Ingestion and New Projects   web    
20632025-01-13Wall Layer Voodoo and Prompt Optimisation   web    
20642025-01-23Access to UIApplication, Tags and LLM API Support   web    
20652025-01-28API Context and Extensible Storage in DA4R   web    
20662025-02-05Tools for Extensible Storage and OAuth Auth0   web    
20672025-02-20Unit Testing and More Serious Matters   web    
20682025-03-03Access UIApplication and Bounding Box on Sheet   web    
20692025-03-14DevCon, API Docs and Fabrication Part Service   web    
20702025-03-20Docs, Local APS LLM and Parallel Task Orchestration   web    
20712025-03-27Revit Gen AI: MCP, RAG and Vibe   web    
20722025-04-02Revit 2026, Empty Assets and Demolished Stuff   web    
20732025-04-03Lookup Foundation, RevitLookup and DA4R 2026   web    
20742025-04-15Intersection Result, LLM for IFC and More AI   web    
20752025-04-29Revit API Agents, MCP, Copilot and Codex   web    
20762025-05-20DevCon 2025, Developer Guide, AI, AI, and AI   web    
20772025-05-22AI Agents and Selfies at DevCon 2025   web    
20782025-07-25Jeremy's Retirement, Continuation of the Blog, Revit SDK 2026.2   web    
20792026-01-07New Year, New Home for The Building Coder   web