Jan. 9, 2019
Curtain wall dimensions with API and Dynamo
In this post I want to show a method that allows to automatically dimension curtain walls in Revit, with the result as on an image above.First let’s assume that our input data are: a curtain wall, a line specifying location of the future dimension line and a view. In order to create a new dimension line in Revit we use such code:
doc.Create.NewDimension(view,line,refArray);
Where “doc” is ou…