<?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: GetLinkDocument() method for nested Revit link returns null in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265191#M37178</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've faced this also. Revit apparently treats nested links as "normal" links (you can Tab select them and copy out of the mainlink file, go figure!) Behaves something like nested groups&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way to go depends on what you want to accomplish.&lt;/P&gt;&lt;P&gt;&lt;U&gt;A. If you want a list of all modelgroups per link (not in treeform) then:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; use FilteredElementcollector on active project by OfClass RevitlinkInstance or ByCategory&amp;nbsp;OST_RvtLinks&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; (this will also include the nested links!)&lt;/P&gt;&lt;P&gt;2. Loop all links and retrieve modelgroups as in your code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;B. If you want a list of all modelgroups of a picked link (You also can pick a Nested link! with Tab select)&lt;/P&gt;&lt;P&gt;1. Use the selected revitlinkinstance to retrieve the modelgroups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C. If you want a list of all modelgroups of a picked Top-level link and from it's nested links (this will be tricky)&lt;/P&gt;&lt;P&gt;1. Pick a top-level link&lt;/P&gt;&lt;P&gt;2. See if selected link has nested links (and get the Fullpathnames per &lt;STRONG&gt;RevitLinkType&lt;/STRONG&gt;&amp;nbsp;!)&lt;/P&gt;&lt;P&gt;3. If yes, then retrieve all links from active model (FilteredElementcollector&amp;nbsp;OfClass RevitlinkInstance etc) and also get all the &lt;STRONG&gt;RevitLinkType&lt;/STRONG&gt;&amp;nbsp;FullPathnames&lt;/P&gt;&lt;P&gt;4. compare the RevitLinkType fullpathnames to get the correct one(s) and retrieve the modelgroups from it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Notes:&lt;/P&gt;&lt;P&gt;- Always retrieve document of a link from the workable project when using RevitLinkInstance.GetLinkDocument.&lt;/P&gt;&lt;P&gt;- Also look into some properties of the elements of RevitLinkType: GetTopLevelLink / IsNestedLink&lt;/P&gt;&lt;P&gt;- Also use "Revit Lookup" autodesk addin for handy info about element and properties&lt;/P&gt;&lt;P&gt;- Don't use elementid of nested RevitLinkInstance to compare: they differ from the link in the top-level link and the nested link in the workable document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope it points you in the right direction, succes.&lt;/P&gt;&lt;P&gt;Best Regards, Michel&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jan 2020 18:43:07 GMT</pubDate>
    <dc:creator>TripleM-Dev.net</dc:creator>
    <dc:date>2020-01-21T18:43:07Z</dc:date>
    <item>
      <title>GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263128#M37170</link>
      <description>&lt;P&gt;Even though I am able to collect the nested Revit links within a Revit link, and get some of its properties, I am unable to get the nested link's document like I can its parent link.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The python script goes as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;BR /&gt;		linkDoc = selectedElem.GetLinkDocument()
		linkTransform = selectedElem.GetTotalTransform()

		#Get Nested links
		nestLinkCollector = list(FilteredElementCollector(linkDoc).OfCategory(BuiltInCategory.OST_RvtLinks).WhereElementIsNotElementType())
		linkElemCollector = []
		for nl in nestLinkCollector:
			nestLinkDoc = nl.GetLinkDocument()
			nestLinkElemCollector = list(FilteredElementCollector(linkDoc).OfCategory(BuiltInCategory.OST_IOSModelGroups).WhereElementIsNotElementType().ToElements())&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can get the nl.Name property, but the nl.GetLinkDocument() call returns null/None. Thus, I am unable to retrieve elements within the nested Revit link as I can in the regular Revit UI.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any tips would be appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 00:01:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263128#M37170</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T00:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263154#M37171</link>
      <description>&lt;P&gt;Should you be using nestLinkDoc and not linkDoc for the nested collector?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 00:29:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263154#M37171</guid>
      <dc:creator>Sean_Page</dc:creator>
      <dc:date>2020-01-21T00:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263174#M37172</link>
      <description>&lt;P&gt;Good catch; that was done in an attempt at throwing everything at the wall to find a solution. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the problem occurs with&amp;nbsp;nestLinkDoc = nl.GetLinkDocument() . This returns null/none.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 00:50:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263174#M37172</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T00:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263193#M37173</link>
      <description>&lt;P&gt;Are the nested links set to Overlay? This would probably keep you from getting the document because the nested link isn't actually loaded.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 01:02:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263193#M37173</guid>
      <dc:creator>Sean_Page</dc:creator>
      <dc:date>2020-01-21T01:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263224#M37174</link>
      <description>&lt;P&gt;Thanks for following up. Yes, the nested and parent links are all set to "attachment" in their respective models.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 01:23:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263224#M37174</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T01:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263297#M37175</link>
      <description>&lt;P&gt;@AnonymousI have some interesting although not entirely helpful results. Perhaps a post on the Dynamo forums may yield you more support for Python if you don't get an answer here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I was able to reproduce you issue using Python via Dynamo&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lnks.PNG" style="width: 953px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/719172iEFE3C5022E351D88/image-size/large?v=v2&amp;amp;px=999" role="button" title="lnks.PNG" alt="lnks.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. However, I was NOT able to reproduce this in C# via add-in. It worked as expected.&lt;/P&gt;&lt;PRE&gt;public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            UIApplication uiapp = commandData.Application;
            Document doc = uiapp.ActiveUIDocument.Document;
            using (FilteredElementCollector fec = new FilteredElementCollector(doc).OfCategory(BuiltInCategory.OST_RvtLinks).WhereElementIsNotElementType())
            {
                foreach (RevitLinkInstance link in fec.ToElements())
                {
                    Document linkDoc = link.GetLinkDocument();
                    using (FilteredElementCollector linkfec = new FilteredElementCollector(linkDoc).OfCategory(BuiltInCategory.OST_RvtLinks).WhereElementIsNotElementType())
                    {
                        foreach (RevitLinkInstance nLink in fec.ToElements())
                        {
                            Document nestDoc = nLink.GetLinkDocument();
                            using (FilteredElementCollector nLinkWalls = new FilteredElementCollector(nestDoc).OfCategory(BuiltInCategory.OST_Walls).WhereElementIsElementType())
                            {
                                foreach (WallType wType in nLinkWalls.ToElements())
                                {
                                    MessageBox.Show(wType.Name);
                                }
                            }
                        }
                    }
                }
            }
            return Result.Succeeded;
        }&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Jan 2020 02:26:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263297#M37175</guid>
      <dc:creator>Sean_Page</dc:creator>
      <dc:date>2020-01-21T02:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263619#M37176</link>
      <description>&lt;P&gt;Does Python wrap the Revit API `Document` object in some other class?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I thought I saw examples of it doing something like that in the past.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, you may need to unwrap it to access the original Document object to call&amp;nbsp;GetLinkDocument on it, or maybe unwrap the result returned by&amp;nbsp;GetLinkDocument to pass it into the collector?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 07:19:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9263619#M37176</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-01-21T07:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265190#M37177</link>
      <description>&lt;P&gt;Thanks for taking time to investigate! It's useful to know the issue is reproducible in python, but not via C# addin. And that the fix likely lies with a workaround in IronPython/RPW.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've taken a bit of time to explore how to unwrap and expose Revit API's 'document' in python. For now, I am seeing much discussion on UnwrapElement() in Dynamo, and unwrap() in the RPW documentation. Nothing immediately seems to work yet, but I will report back if it does. I will also take this to the Dynamo forums and pyRevit git.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 18:45:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265190#M37177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T18:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265191#M37178</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've faced this also. Revit apparently treats nested links as "normal" links (you can Tab select them and copy out of the mainlink file, go figure!) Behaves something like nested groups&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way to go depends on what you want to accomplish.&lt;/P&gt;&lt;P&gt;&lt;U&gt;A. If you want a list of all modelgroups per link (not in treeform) then:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; use FilteredElementcollector on active project by OfClass RevitlinkInstance or ByCategory&amp;nbsp;OST_RvtLinks&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; (this will also include the nested links!)&lt;/P&gt;&lt;P&gt;2. Loop all links and retrieve modelgroups as in your code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;B. If you want a list of all modelgroups of a picked link (You also can pick a Nested link! with Tab select)&lt;/P&gt;&lt;P&gt;1. Use the selected revitlinkinstance to retrieve the modelgroups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C. If you want a list of all modelgroups of a picked Top-level link and from it's nested links (this will be tricky)&lt;/P&gt;&lt;P&gt;1. Pick a top-level link&lt;/P&gt;&lt;P&gt;2. See if selected link has nested links (and get the Fullpathnames per &lt;STRONG&gt;RevitLinkType&lt;/STRONG&gt;&amp;nbsp;!)&lt;/P&gt;&lt;P&gt;3. If yes, then retrieve all links from active model (FilteredElementcollector&amp;nbsp;OfClass RevitlinkInstance etc) and also get all the &lt;STRONG&gt;RevitLinkType&lt;/STRONG&gt;&amp;nbsp;FullPathnames&lt;/P&gt;&lt;P&gt;4. compare the RevitLinkType fullpathnames to get the correct one(s) and retrieve the modelgroups from it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Notes:&lt;/P&gt;&lt;P&gt;- Always retrieve document of a link from the workable project when using RevitLinkInstance.GetLinkDocument.&lt;/P&gt;&lt;P&gt;- Also look into some properties of the elements of RevitLinkType: GetTopLevelLink / IsNestedLink&lt;/P&gt;&lt;P&gt;- Also use "Revit Lookup" autodesk addin for handy info about element and properties&lt;/P&gt;&lt;P&gt;- Don't use elementid of nested RevitLinkInstance to compare: they differ from the link in the top-level link and the nested link in the workable document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope it points you in the right direction, succes.&lt;/P&gt;&lt;P&gt;Best Regards, Michel&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 18:43:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265191#M37178</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-01-21T18:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265240#M37179</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the C# code in the second ForEach loop you also reference to&amp;nbsp;&lt;STRONG&gt;fec.ToElements&lt;/STRONG&gt;, it retrieves the elements from the first Collector. If you replace it with the&amp;nbsp;&lt;STRONG&gt;linkfec&lt;/STRONG&gt; collection the second loop creates a error, no document retrieved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The nested walls appear to be retrieved because Revit retrieves all links (including the nested ones) in the first&amp;nbsp;FilteredElementCollector.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I think Python and C# retrieve the links identical.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Michel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 19:01:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265240#M37179</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-01-21T19:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265274#M37180</link>
      <description>&lt;P&gt;Ah. So perhaps this might be a limitation of the Revit API?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If so, I will just create a workaround within the parent link's file to retrieve model group data from its nested links.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 19:17:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265274#M37180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T19:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265286#M37181</link>
      <description>&lt;P&gt;No I don't think so, it's just the way it's implemented in Revit API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The GetLinkDocument can only be retrieved from a instance in the workable project, this includes the nested links.&lt;/P&gt;&lt;P&gt;So nested links info/data can be retrieved, how you code it depends on the desired endresult/workflow of the addin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Michel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 19:18:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265286#M37181</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-01-21T19:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265390#M37182</link>
      <description>&lt;P&gt;Ah! I see the issue now. In my python script, I was relying on the user to select which link they'd want to retrieve the data from. The script then sought to filter any nested link within the selected link, which returned those aforementioned errors.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In&amp;nbsp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3064449"&gt;@Sean_Page&lt;/a&gt;&amp;nbsp;'s C# attempt to reproduce the issue, they instead filtered all links from within the host doc, which included nested links. This, combined with your suggestion to use "RevitLinkType" to match the path of the user-selected link will provide what I need to proceed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a ton guys! This community is amazing!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 19:59:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/9265390#M37182</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T19:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: GetLinkDocument() method for nested Revit link returns null</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/12766622#M37183</link>
      <description>&lt;P&gt;You should put a condition so that it does not read null.&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/count-elements-within-revit-links/m-p/12765971#M78790" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/count-elements-within-revit-links/m-p/12765971#M78790&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2024 13:01:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getlinkdocument-method-for-nested-revit-link-returns-null/m-p/12766622#M37183</guid>
      <dc:creator>emaguilera</dc:creator>
      <dc:date>2024-05-11T13:01:08Z</dc:date>
    </item>
  </channel>
</rss>

