Beam Maker Using a Void Extrusion to Cut

Here is an interesting and more than average advanced sample application BeamMaker by Marcelo Quevedo of hsbSOFT demonstrating how to create a void in a beam in a family file.

The family file is created and loaded into the current working project on the fly.

The final result of the application is the following beam family instance created in the currently active document, which in this case was a new project:

Beam with a void extrusion cut out

Here is Marcelo's description of his project:

Using the default template that comes with Revit, the sample creates a 'structural framing' family that contains a void extrusion that cuts the solid (existing extrusion in the Revit template).

Here are some quick and dirty notes of my own from stepping through the application code in the debugger:

BeamMaker includes a whole bunch of useful utility functions, a real treasure trove of gems is contained in there.

As a very simple example, here is the GetFamilyTemplatePath which determines the full path name of a given family template file and makes use of the FamilyTemplatePath property on the Revit application object to do so. It returns the full path of a default template for a given family template name:

private string GetFamilyTemplatePath( 
  string strFamilyTemplateName )
{
  string strPathForTemplates 
    = _app.FamilyTemplatePath;
 
  string strTemplateFile 
    = Path.Combine( strPathForTemplates, 
      strFamilyTemplateName );
 
  if( !File.Exists( strTemplateFile ) )
  {
    strTemplateFile = Path.Combine(
      strPathForTemplates,
      "Metric " + strFamilyTemplateName );
  }
 
  if( !File.Exists( strTemplateFile ) )
  {
    strTemplateFile = "";
  }
 
  return strTemplateFile;
}

Please download the BeamMaker project including the source code, Visual Studio solution and add-in manifest files to look at the complete code.

To wrap this up, here is the original discussion between Marcelo and Joe which prompted Marcelo to develop and provide this sample:

Question: Using the family API, I am creating a new structural framing family. I am using the template that comes with Revit "Metric Structural Framing - Beams and Braces.rft". I am creating a void extrusion to cut the existing extrusion, but it does not cut the existing one. If you manually edit the family, you can see the existing extrusion and the new void extrusion, but the void extrusion does not subtract the geometry from the other one. How can I achieve this?

Answer: Simply creating the void solid does not automatically cause it to cut any existing ones. In the Revit user interface, one needs to explicitly invoke the ‘Cut Geometry’ command for this to happen, i.e. to make the void cut the solid. It is accessible through the Modify tab and Geometry panel. In a Revit plug-in, one can use the CombineElements method to make the void objects cut the solid objects.

Many thanks to Joe and above all to Marcelo for providing this useful example and code!