<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Reference to annotation familyinstance in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531468#M63297</link>
    <description>&lt;P&gt;Dear Christian,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you notice that Scott Wilson described a workaround in the original post?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recently published&amp;nbsp;some of Scott Wilson's&amp;nbsp;Reference Stable Representation Magic Voodoo and have since heard confirmation from other developers that it solves issue for them in this realm:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2016/04/stable-reference-string-magic-voodoo.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2016/04/stable-reference-string-magic-voodoo.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you like to take a look at that too, both in the original discussion forum thread and&amp;nbsp;The Building Coder post?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let us know how it works out for you and whether and how you can make use of it to address your task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
    <pubDate>Tue, 30 Aug 2016 15:29:20 GMT</pubDate>
    <dc:creator>jeremytammik</dc:creator>
    <dc:date>2016-08-30T15:29:20Z</dc:date>
    <item>
      <title>Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531277#M63296</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sorry for repeating the same subject again, but none of the solution in the forum or other place gave me a solution so far. I want to align an annotation symbol with a reference plane in a family document. Getting the reference of the reference plane is easy. But so far I couldn't find a way to get a reference of any valid object or geometry of the annotation family.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Found solutions so far:&lt;/P&gt;&lt;P&gt;Options options = new Options();&lt;BR /&gt;options.IncludeNonVisibleObjects = true;&lt;BR /&gt;options.ComputeReferences = true;&lt;BR /&gt;options.DetailLevel = ViewDetailLevel.Undefined;&lt;/P&gt;&lt;P&gt;GeometryElement geoElem = fi.get_Geometry(options);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;geoElem returns me null.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Options options = new Options();&lt;BR /&gt;options.IncludeNonVisibleObjects = true;&lt;BR /&gt;//options.ComputeReferences = true; &amp;nbsp; &amp;nbsp; &amp;lt;--- is not allowed and throws error.&lt;BR /&gt;//options.View = v;&lt;/P&gt;&lt;P&gt;GeometryElement geoElem = fi.GetOriginalGeometry(options);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get geometry and I can loop through all the lines and solids, but the geometry object have no reference (reference is null).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does give me a reference is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reference r = Reference.ParseFromStableRepresentation(famdoc, fi.UniqueId);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I can't use it, as it is not a valid reference for:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dimension d1 = famdoc.FamilyCreate.NewAlignment(v, r, p.GetReference());&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe someone has an idea and could help me out, or the API team could get a method included to make that a bit easier as requested in this post:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api/create-dimension-get-references-to-familyinstances/td-p/4990394" target="_blank"&gt;http://forums.autodesk.com/t5/revit-api/create-dimension-get-references-to-familyinstances/td-p/4990394&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 years ago.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I change the code to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Options geomOptions = f.Document.Application.Create.NewGeometryOptions();&lt;BR /&gt;geomOptions.IncludeNonVisibleObjects = true;&lt;BR /&gt;geomOptions.ComputeReferences = true;&lt;BR /&gt;//options.View = v;&lt;BR /&gt;geomOptions.DetailLevel = ViewDetailLevel.Undefined;&lt;/P&gt;&lt;P&gt;GeometryElement geoElem = f.Symbol.get_Geometry(geomOptions);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;geoElem still returns null. (just thought this might work as found here:&amp;nbsp;&lt;A href="http://forums.autodesk.com/t5/revit-api/how-to-get-the-reference-of-a-planarface/m-p/6489839#M17855" target="_blank"&gt;http://forums.autodesk.com/t5/revit-api/how-to-get-the-reference-of-a-planarface/m-p/6489839#M17855&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 14:43:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531277#M63296</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-30T14:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531468#M63297</link>
      <description>&lt;P&gt;Dear Christian,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you notice that Scott Wilson described a workaround in the original post?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recently published&amp;nbsp;some of Scott Wilson's&amp;nbsp;Reference Stable Representation Magic Voodoo and have since heard confirmation from other developers that it solves issue for them in this realm:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2016/04/stable-reference-string-magic-voodoo.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2016/04/stable-reference-string-magic-voodoo.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you like to take a look at that too, both in the original discussion forum thread and&amp;nbsp;The Building Coder post?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let us know how it works out for you and whether and how you can make use of it to address your task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 15:29:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531468#M63297</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-08-30T15:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531501#M63298</link>
      <description>&lt;P&gt;Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the quick respond. I have seen this code and it doesn't work for me. The issue is that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GeometryElement geomElem = elem.get_Geometry(gOptions);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;returns null. So I can't loop through the geometry and get a reference to one of the planarfaces.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached my annotation family. If you place this annotation in an family document and look at the object with revit lookup, it has no geometry, only original geometry, which can't be used as the geometry objects inside have no reference for some reason.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope the attached png explains a bit more.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: Maybe there is something wrong with the annotation family.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 16:03:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6531501#M63298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-30T16:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534026#M63299</link>
      <description>&lt;P&gt;Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you please reach out to the development team and get this issue in front of them. I (we) need a solution for that. I have the whole family creation process automated, but this one alignment. Pretty annoying.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be great.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 14:36:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534026#M63299</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-31T14:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534612#M63300</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Christian,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sure thing, no problem.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;One quick further clarification before I raise a development issue for this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you achieve your goal manually through the user interface?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If so, we still have a chance to find a workaround that you can use right away.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If not, it will probably require deeper investigation by the development team, and a wait.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:13:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534612#M63300</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-08-31T17:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534616#M63301</link>
      <description>&lt;P&gt;Yes I can. And I see the annotation listed in the Revit lookup tool. Just can't get the right reference in the API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:15:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534616#M63301</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-31T17:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534636#M63302</link>
      <description>&lt;P&gt;Tadaa!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have the solution right there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RevitLookup is written using the official Revit API and nothing else.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you see what you need in RevitLookup, it is API accessible, and you can debug through the steps perfomed by RevitLookup to see exactly how to navigate to it in your own code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you find that the hard-coded user interface navigation functionality provided by RevitLookup is not flexible enough for the powerful exploration you need, please use one of the other more intimate interactive database exploration tools available such as the Revit Python or Ruby shell:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2013/11/intimate-revit-database-exploration-with-the-python-shell.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2013/11/intimate-revit-database-exploration-with-the-python-shell.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:19:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534636#M63302</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-08-31T17:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534652#M63303</link>
      <description>&lt;P&gt;Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see the dimension (alignment) in the revit lookup, but that doesn't mean that I can set it thought the API. When I set the alignment in the UI the dimension is shown up, but I cant click the entry (revit lookup crashes).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some more ideas to solve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:24:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534652#M63303</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-31T17:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534966#M63304</link>
      <description>&lt;P&gt;The very first thing I would suggest is to debug RevitLookup to see what exactly is causing the crash.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normally, it is a simple matter of adding a one-line exception handler around the offending statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a diff showing a typical example of such a minimal enhancement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/RevitLookup/compare/2017.0.0.4...2017.0.0.5" target="_blank"&gt;https://github.com/jeremytammik/RevitLookup/compare/2017.0.0.4...2017.0.0.5&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please determine what exception is being thrown and create a pull request on RevitLookup to handle it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe a specific property that you need to access is null.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the other hand, you say that you see the required data in RevitLookup, so whatever it is you are after is in fact API accessible... or you would not see it at all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 19:02:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6534966#M63304</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-08-31T19:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6535568#M63305</link>
      <description>&lt;P&gt;Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the alignment is accessible (once create in the UI manually), but I still cant get a reference to the FamilySymbol to create the alignment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attached 3 images:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FamilySymbol_NoAlignment.pgn: The alignment is still not set and doesn't show up in the DB.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FamilySymbol_WithAlignment.pgn: The alignment is set and shows up in the DB.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ClickAlignmentinRevitLookup.pgn: RevitLookUp crashes and Revit comes with this error message.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe some more ideas how to resolve this issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What I would like from the API team is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;FamilyInstance fi = famdoc.GetElement(f.Id) as FamilyInstance;
Reference r = fi.GetReference();&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Is that possible?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Christian&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 00:36:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6535568#M63305</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-01T00:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6535893#M63306</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Christian,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your update and clarification.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I logged the issue &lt;U&gt;&lt;STRONG&gt;REVIT-98103&lt;/STRONG&gt;&lt;/U&gt; [API unable to create reference to annotation family instance -- 12125288] with our development team for this on your behalf as it requires further exploration and possibly a modification to our software. Please make a note of this number for future reference.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You are welcome to request an update on the status of this issue or to provide additional information on it at any time quoting this change request number.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This issue is important to me. What can I do to help?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This issue needs to be assessed by our engineering team, and prioritised against all of the other outstanding change requests. Any information that you can provide to influence this assessment will help. Please provide the following where possible:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Impact on your application and/or your development.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The number of users affected.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The potential revenue impact to you.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The potential revenue impact to Autodesk.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Realistic timescale over which a fix would help you.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;In the case of a request for a new feature or a feature enhancement, please also provide detailed Use cases for the workflows that this change would address.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This information is extremely important. Our engineering team have limited resources, and so must focus their efforts on the highest impact items. We do understand that this will cause you delays and affect your development planning, and we appreciate your cooperation and patience.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 06:54:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6535893#M63306</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-09-01T06:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6538021#M63307</link>
      <description>&lt;P&gt;Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where do I have to go to provide this additional information? I really want to get this resolved as its the last missing piece in the puzzle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2016 00:10:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6538021#M63307</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-02T00:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6538899#M63308</link>
      <description>&lt;P&gt;Dear Christian,&lt;BR /&gt; &lt;BR /&gt;I escalated this thread to an ADN case &lt;U&gt;&lt;STRONG&gt;12125288&lt;/STRONG&gt;&lt;/U&gt; [Reference to annotation familyinstance] for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can either submit the information here in this public forum thread, or answer the official ADN reply that I sent you from that case.&lt;BR /&gt; &lt;BR /&gt;Thank you for your feedback!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;BR /&gt; &lt;BR /&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2016 12:09:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/6538899#M63308</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-09-02T12:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7799118#M63309</link>
      <description>&lt;P&gt;How can I check the status of the ADN case? I want to get references to an AnnotationSymbol so I could create linear dimensions to the AnnotationSymbol so it could be placed differently for each family type.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 11:21:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7799118#M63309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-22T11:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7799346#M63310</link>
      <description>&lt;P&gt;Dear Kevin,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You cannot check it yourself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are welcome to request an update on its status or to provide us with additional information at any time quoting the issue number REVIT-98103 [API unable to create reference to annotation family instance -- 12125288].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I can tell you the status right away:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;REVIT-98103 was closed as a duplicate of REVIT-102253 in November 2016, because the latter covers everything in it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;REVIT-102253 [API access to family instance references corresponding to ref planes and lines in family] was also closed as 'Fixed' in December 2016.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I can tell from that, you can solve your problem by adding all the required reference planes and lines to the family definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:01:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7799346#M63310</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-02-22T13:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7801687#M63311</link>
      <description>&lt;P&gt;Hey Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do bug fixes work with Revit API releases? Since&amp;nbsp;&lt;SPAN&gt;REVIT-102253 was fixed in December 2016, is the fix in the most recent Revit build after December 2016? I'm assuming Revit API releases correspond with the Revit&amp;nbsp;release builds.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://knowledge.autodesk.com/support/revit-products/downloads/caas/downloads/content/autodesk-revit-2016-product-updates.html" target="_blank"&gt;https://knowledge.autodesk.com/support/revit-products/downloads/caas/downloads/content/autodesk-revit-2016-product-updates.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In this case, that would be&amp;nbsp;&lt;STRONG&gt;2016.1.8&lt;/STRONG&gt;&amp;nbsp;released on&amp;nbsp;April 17, 2017.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Or would the bug fix be in later releases or revit - 2017 or 2018?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Unfortunately, I am developing for Revit Architecture 2016 Build 16.0.428.0 - 20150220_1215(x64), so I think it doesn't have the bug fix because it's too old.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I did have the fix, how would I get the reference to the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Line&lt;/FONT&gt;&amp;nbsp;that corresponds to the "Defines Origin"&amp;nbsp;&lt;FONT face="courier new,courier"&gt;ReferencePlane&lt;/FONT&gt;s in the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;AnnotationSymbol&lt;/FONT&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;AnnotationSymbol&lt;/FONT&gt;&amp;nbsp;is a subclass of&amp;nbsp;&lt;FONT face="courier new,courier"&gt;FamilyInstance&lt;/FONT&gt;&amp;nbsp;so I can use&amp;nbsp;&lt;FONT face="courier new,courier"&gt;get_Geometry()&lt;/FONT&gt;&amp;nbsp;or&amp;nbsp;&lt;FONT face="courier new,courier"&gt;GetOriginalGeometry()&lt;/FONT&gt;. However,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;get_Geometry()&lt;/FONT&gt;&amp;nbsp;returns null for&amp;nbsp;&lt;FONT face="courier new,courier"&gt;AnnotationSymbol&lt;/FONT&gt;&amp;nbsp;as described in the&amp;nbsp;&lt;A href="http://www.revitapidocs.com/2017/d8a55a5b-2a69-d5ab-3e1f-6cf1ee43c8ec.htm" target="_blank"&gt;documentation&lt;/A&gt;&amp;nbsp;under "Remarks":&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"a null reference (&amp;nbsp;Nothing&amp;nbsp;in Visual Basic)&amp;nbsp;will be returned for symbols, annotations or details"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The latest&amp;nbsp;&lt;A href="http://www.revitapidocs.com/2018.1/d8a55a5b-2a69-d5ab-3e1f-6cf1ee43c8ec.htm" target="_blank"&gt;2018.1 API&lt;/A&gt;&amp;nbsp;says the same thing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So that eliminates the use of&amp;nbsp;&lt;FONT face="courier new,courier"&gt;get_Geometry()&lt;/FONT&gt;, so I try to use&amp;nbsp;&lt;FONT face="courier new,courier"&gt;GetOriginalGeometry()&lt;/FONT&gt;. However, the&amp;nbsp;&lt;A href="http://www.revitapidocs.com/2017/d28a0880-bff8-1acc-ddf1-ce3205f2e8b3.htm" target="_blank"&gt;documentation&lt;/A&gt;&amp;nbsp;says "Note that&amp;nbsp;&lt;FONT face="courier new,courier"&gt;ComputeReferences&lt;/FONT&gt;&amp;nbsp;may not be set to true" under "Parameters".&amp;nbsp;The latest&amp;nbsp;&lt;A href="http://www.revitapidocs.com/2018.1/d28a0880-bff8-1acc-ddf1-ce3205f2e8b3.htm" target="_blank"&gt;2018.1 API&lt;/A&gt;&amp;nbsp;says the same thing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So the following is the current code I have. Notice that I set&amp;nbsp;&lt;FONT face="courier new,courier"&gt;ComputeReferences&lt;/FONT&gt;&amp;nbsp;to&amp;nbsp;&lt;FONT face="courier new,courier"&gt;false&lt;/FONT&gt;, because I am using&amp;nbsp;&lt;FONT face="courier new,courier"&gt;GetOriginalGeometry()&lt;/FONT&gt;&amp;nbsp;and will get an error if I set it to&amp;nbsp;&lt;FONT face="courier new,courier"&gt;true&lt;/FONT&gt;. I am able to find the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Line&lt;/FONT&gt;s that correspond to the "Defines Origin"&amp;nbsp;&lt;FONT face="courier new,courier"&gt;ReferencePlane&lt;/FONT&gt;s but unable to get the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Reference&lt;/FONT&gt;s because they aren't computed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ViewPlan viewPlan = RevitUtilities.GetFloorPlan(document, "Ref. Level");&lt;BR /&gt;Options options = new Options();
options.IncludeNonVisibleObjects = true;&lt;BR /&gt;options.ComputeReferences = false; // true will error
options.View = viewPlan;
IEnumerable&amp;lt;Line&amp;gt; enumerableLines =
    familyInstance.GetOriginalGeometry(options)
                  .Where(geometryObject =&amp;gt; geometryObject is Line)
                  .Cast&amp;lt;Line&amp;gt;();
Line refPlaneLineLeftRight =
    enumerableLines.First
    (
        line =&amp;gt; line.Direction.IsAlmostEqualTo(new XYZ(1.0, 0.0, 0.0)) ||
                line.Direction.IsAlmostEqualTo(new XYZ(-1.0, 0.0, 0.0))
    );

Line refPlaneLineFrontBack =
    enumerableLines.First
    (
        line =&amp;gt; line.Direction.IsAlmostEqualTo(new XYZ(0.0, 1.0, 0.0)) ||
                line.Direction.IsAlmostEqualTo(new XYZ(0.0, -1.0, 0.0))
    );&lt;BR /&gt;Reference refPlaneLineLeftRightReference = refPlaneLineLeftRight.Reference; // null&lt;BR /&gt;Reference refPlaneLineFrontBackReference = refPlaneLineFrontBack.Reference; // null&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are some RevitLookup images showing the same problem:&lt;/P&gt;&lt;P&gt;I am using a family with an imported Generic Annotation Family. I will be creating a &lt;FONT face="courier new,courier"&gt;LinearDimension&lt;/FONT&gt;. I want to be able to create the &lt;FONT face="courier new,courier"&gt;LinearDimension&lt;/FONT&gt; programmatically but am unable to because I can't get the &lt;FONT face="courier new,courier"&gt;Line&lt;/FONT&gt; &lt;FONT face="courier new,courier"&gt;Reference&lt;/FONT&gt;s. However, I can see the &lt;FONT face="courier new,courier"&gt;Reference&lt;/FONT&gt;s after creating the &lt;FONT face="courier new,courier"&gt;LinearDimension&lt;/FONT&gt;.&lt;/P&gt;&lt;P&gt;The family is attached.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UI can see ReferencePlane Line Reference" style="width: 544px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/466584i6D655C2CE0A78856/image-size/large?v=v2&amp;amp;px=999" role="button" title="ui_line_reference.PNG" alt="UI can see ReferencePlane Line Reference" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;UI can see ReferencePlane Line Reference&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Create a LinearDimension" style="width: 331px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/466585iF16908DC2CF02F2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="ui_linear_dimension.PNG" alt="Create a LinearDimension" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Create a LinearDimension&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnnotationSymbol has null Geometry but has OriginalGeometry" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/466586i580D8355E01EA974/image-size/large?v=v2&amp;amp;px=999" role="button" title="only_original_geometry.PNG" alt="AnnotationSymbol has null Geometry but has OriginalGeometry" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;AnnotationSymbol has null Geometry but has OriginalGeometry&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OriginalGeometry has null Reference for Line" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/466587iC7CF8B0D84D7BDC5/image-size/large?v=v2&amp;amp;px=999" role="button" title="line_reference_null.PNG" alt="OriginalGeometry has null Reference for Line" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;OriginalGeometry has null Reference for Line&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="The LinearDimension has the Line Reference in its ReferenceArray" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/466588i964CE560510C5E0E/image-size/large?v=v2&amp;amp;px=999" role="button" title="linear_dimension_has_line_reference.PNG" alt="The LinearDimension has the Line Reference in its ReferenceArray" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;The LinearDimension has the Line Reference in its ReferenceArray&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would the bug fix allow me to get the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;Reference&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;Line&lt;/FONT&gt;? I know Revit 2018 API has an improved way to get&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;Reference&lt;/FONT&gt;s instead of finding them through the geometry such as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.revitapidocs.com/2018.1/a8a7dc74-db8e-a7b6-a9c8-869397cca6b4.htm" target="_blank"&gt;&lt;FONT face="courier new,courier"&gt;GetReferences()&lt;/FONT&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.revitapidocs.com/2018.1/d44a95cc-f2c7-1fa9-9180-fefed6d70ed6.htm" target="_blank"&gt;&lt;FONT face="courier new,courier"&gt;GetReferencesByName()&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;but I don't know if this is supposed to be the fix of&amp;nbsp;&lt;SPAN&gt;REVIT-102253.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 00:27:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7801687#M63311</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-23T00:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to annotation familyinstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7802503#M63312</link>
      <description>&lt;P&gt;Dear Kevin,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your update and explanation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is not possible to determine what versions of Revit include a specific fix without reading and understanding the detailed release notes. I would have to ask the development tam specifically. This fix certainly did not make it into any Revit 2016 versions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the new functionality enables you to retrieve references on the family instance to any and all reference planes and lines specified in the family definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 09:58:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/reference-to-annotation-familyinstance/m-p/7802503#M63312</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-02-23T09:58:08Z</dc:date>
    </item>
  </channel>
</rss>

