A Couple of Recent Issues

I have been quiet here for several days now, very busy working on Revit API cases, but nothing very generic to share here.

Instead, let me mention a couple of quick answers by Scott Conover of the Revit API development team to some other recent issues that cropped up:

Ribbon Settings and Drop Down Pin

Question: How can I access the ribbon drop down pin and settings arrow from the API?

Ribbon pin
Ribbon settings arrow

Answer: The RibbonPanel AddSlideOut method adds a sliding panel to your custom add-in ribbon user interface.

You cannot do anything programmatically with the pin – the user has complete control over that.

If you want to do anything beyond that, you are leaving the realm of the officially supported Revit API and may be able to use the .NET UI Automation library and the unsupported functionality provided by the AdWindows.dll assembly.

Reponse: Here is the code that I used to display the pin:

  void PushButton_Settings(
    RibbonPanel p)
  {
    p.AddSlideOut(); // this displays the pin!
 
    PushButtonData pbd = new PushButtonData(
      "Settings", "File path Settings",
      _introLabPath, "HCL_Ribbon.Command");
 
    pbd.LargeImage = NewBitmapImage("Setting-icon.png");
    pbd.Image = NewBitmapImage("Setting-icon.png");
    pbd.ToolTip = "Set the path to the folder location";
 
    p.AddItem( pbd );
  }
Custom ribbon panel pin

Determining Whether a Family Instance is Joined

Question: Is there a way to tell if a family instance is joined to something?

I tried using RevitLookup but don't see anything useful.

When transforming an edge I'm getting different results after joining the family instance to another one or a wall, etc.

Answer: There are a couple of things to try:

Here are some related discussions:

The last link above discusses a whole bunch of different approaches.

Getting the Face from a ReferenceIntersector

Question: I am using the API to obtain a Face object at the intersection of a given point and direction. For that, I used the ReferenceIntersector like this:

  ReferenceIntersector refIntersector
    = new ReferenceIntersector( id,
      FindReferenceTarget.Face, selectedView );
 
  XYZ origin = new XYZ( x, y, z );
 
  ReferenceWithContext refContext
    = refIntersector.FindNearest(
      origin, new XYZ( 0, 0, -1 ) );
 
  Reference refObject = refContext.GetReference();

What next with the refObject?

How can I get a reference to the Face object?

Answer: From the reference, you can retrieve the associated element using the Document GetElement method.

From the element, you can retrieve the geometry object that was picked on it using GetGeometryObjectFromReference.

You can cast that to a face, which is not an element itself.

Many thanks to Scott and the team for raising and answering these questions.

How to Modify Family Instance Geometry

Oh, let me add one more issue that just came in right now.

Question: I am trying to modify the geometry contained in a FamilyInstance in a project document. It does not appear that the API allows this. I have figured out how to use the Duplicate method to create a new FamilySymbol in my project document and then assign it to the FamilyInstance.Symbol property. But I can only seem to modify the parameter values for the duplicated symbol. I really need to modify its geometry. I would prefer to not have to go back into the family document to accomplish this because I am making these changes inside an Updater's Excute method. Is there a way to accomplish this? Please point me in the right direction.

Answer: Thank you for your query.

The short answer is 'no'.

I might add an emphatic 'absolutely not'.

Sorry.

You must be aware that the entire Revit model is parametrically driven.

The parameters drive the model.

The geometry is just the result.

To make any changes to the geometry, you have to start with the parameters.

They generate new geometry.

That is the main feature that makes Revit and its API different from many other CAD systems:

I hope this helps.

This is really important to understand.

It helps a lot to get to know Revit well from the user interface, workflow, product side of things before starting to think about programming anything.

That helps convince you that the system actually works and does something useful, in addition to preventing you from doing everything you might be used to from programming other CAD systems.

By the way, the new DirectShape element does in fact enable you to define geometry right there in the project environment without creating a separate family and inserting an instance for it.

That was added to simplify IFC and other external format round trips, among other things, and does not change the main underlying principles, though.