Skip to content

Instantly share code, notes, and snippets.

@chuongmep
Created June 13, 2020 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuongmep/c27a090459eeb777ff62d3d5788dd87b to your computer and use it in GitHub Desktop.
Save chuongmep/c27a090459eeb777ff62d3d5788dd87b to your computer and use it in GitHub Desktop.
public static Reference Reference(Element Familyinstance)
{
FamilyInstance familyInstance = (FamilyInstance)Familyinstance.InternalElement;
Options options = new Options();
options.ComputeReferences = true;
options.IncludeNonVisibleObjects = true;
var result = familyInstance.get_Geometry(options)
.OfType<Autodesk.Revit.DB.Point>()
.FirstOrDefault();
if (result == null) return null;
return result.Reference;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment