Export Family Instance to gbXML

The Green Building XML Schema or gbXML was developed to facilitate the transfer of building information stored in CAD building information models, enabling interoperability between building design models and a wide variety of engineering analysis tools. It has been widely adopted by leading CAD vendors and is on the road to becoming a de-facto industry standard schema, so we obviously see more and more application developers interested in using and supporting it, leading to questions such as the following one.

Question: When exporting a Revit MEP model to gbXML, only system families, doors and windows are exported. All other families such as Generic, etc. are missing in the gbXML output. This includes almost all the families that we use as shading devices, which are generic families. How can we resolve this?

Answer: If you launch the export via the API, you can specify certain settings before calling the Export method. Please set ProjectInfo.gbXMLSettings.ExportComplexity to the enumeration value defining the degree of complexity you wish to export. Here are the possible settings, which are documented in the Revit API help file RevitAPI.chm:

Unfortunately, none of these settings actually cause the generic family instances to be included in the export.

After testing all ExportComplexity cases via the user interface settings for Export Complexity, I see that none of them export generic family instances.

One option would be to model the devices using system families instead, since the component families are not exported. For example, using a small slab might be a possibility.

Thanks to Joe Ye for handling this case.

Two typical Problems

I just handled two cases with typical recurring problems that I would like to remind everybody to watch out for:

Use modal dialogues

You should always use modal dialogues in your Revit external command, unless you really know what you are doing. Otherwise, you may quickly run into problems:

Question: I am trying to load a type symbol and am having issues with it. The method returns true indicating that the type symbol has been loaded, but it does not show up anywhere in the Revit user interface. For instance, I am loading a window type from a family that has never been loaded before. I would expect to see it in the Revit user interface afterwards, however it is not there. Right now we have to cancel the family browser and reset the project browser for the family or type to load. I am pretty sure that we are getting our wires crossed.

Answer: I looked at your sample application, and yes, I can tell you what the problem is. Crossed wires is actually a pretty apt description. This is your application execution sequence:

Unfortunately, in the last step, you are no longer in a context in which the Revit API will allow you to interact with it in any way, because your command has already terminated.

Please use a modal dialogue instead, and do not return from the command until your use of the Revit API is concluded. When you return, the transaction that Revit manages for your command is terminated. Your return code of Succeeded, Failed or Cancelled determines whether the transaction is committed or aborted.

Some hints on modal versus modeless dialogues are discussed in the posts on driving Revit from outside and using modeless dialogues. More information on the automatic transaction handling performed by Revit for your external command is discussed in the introduction to transactions, transaction responsibility and the document IsModified property.

Set Copy Local to False

Always ensure that the Copy Local flag on your application's reference to the RevitAPI.dll assembly in your Visual Studio project is set to false, as described in the post on the document IsModified property. I still keep seeing cases where this flag is left in its default setting of True.