Swapping Titleblocks...The Easy Way

This article was originally published on Archi+Lab’s blog and has been republished here with permission.


This particular workflow came up recently when one of the Design Technology Managers at HOK asked if it was possible to swap bunch of Titleblocks for a different one, while retaining all of the parameters in tact. As you are all aware, all of the view/sheet parameters transfer (or rather don’t change) when a Titleblock is changed on a Sheet, but the Titleblock parameters themselves get all reset to their default values. Especially if the parameters don’t match names and types across Titleblocks, it’s a major hustle. It’s rather rare, to have any Titleblock specific parameters, but some like Stamp, or KeyPlan visibility are usually assigned to Titleblock rather than a Sheet. I might have my opinion about that, but in general it is what it is, so let’s move on and see how this can be solved:

First we need to select all Titleblocks and Sheets. Wait…what?! Yes, Sheets and Titleblocks are separate entities in Revit. They are connected by means of Sheet Number. So basically a Sheet, and a Titleblock will share the same value for parameter Sheet Number, but they are two different objects. Now, to get started we need to get all Sheets and all Titleblocks and then arrange them into pairs or parallel lists with matching order. Normally we can select all Titleblocks like this:

titleblocks-1.png

However, in this particular workflow we need to use Python to do this. Why? Because certain nodes in Dynamo have Element Updated event programmed into them, which causes them to refresh when any of the elements that’s being passed through them changes. One of those nodes is All Elements of Category. Why do we care about this? Well, what we want to do is to get some parameters from our currently used Titleblocks, replace the Titleblock with new (this will trigger element updated event), and then assign previously retrieved values to new Titleblock. You see the problem now? It’s the sequence of actions that we need, that cannot be achieved if after our second step Dynamo refreshes all of our Tietleblocks, hence erasing all of our previously retrieved parameter values. One way to remedy that, is to use a Python script node. These nodes don’t refresh automatically, hence, we can keep the retrieved values longer, and even after we switch Titleblocks they won’t get erased. Let’s get right to it:

titleblocks-2.png

Then we have the code for getting all of the Sheets:

As you have noticed there is one more Python node on canvas. We are using it to check if a Sheet is a Placeholder, so we can exclude them. Remember that Placeholder Sheets do not have Titleblock assigned, so we can safely exclude these from our workflow. Here’s that short code:

Once we have all that covered we can now match up our Titleblocks with Sheets.

titleblocks-3.png

You can see how we just retrieve the Sheet Number parameter from both Titleblocks and Sheets, then use List.IndexOf and List.GetItemAtIndex to retrieve a matching list of Titleblocks/Sheets. We can then move on to our next step, which is to retrieve some of the parameters, swap Titleblock and write these parameters to it.

titleblocks-4.png

That’s it. You have effectively replaced Titleblocks for Sheets, without losing any previously assigned parameters. If you’d like to find more helpful articles, please visit Archi+Labs blog here.

Friday Feature - August 23rd Edition

Friday Feature - August 23rd Edition

Choosing the Best Material for Kitchen Cabinets

Choosing the Best Material for Kitchen Cabinets