<?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: Close Active Project/Document in REVIT 2016 using c# API in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9264850#M55646</link>
    <description>&lt;P&gt;Hi, Rui!&lt;/P&gt;&lt;P&gt;You can see this sample&lt;/P&gt;&lt;P&gt;(&amp;nbsp;&lt;A href="https://adn-cis.org/legkoe-sozdanie-knopok-na-lente-dlya-vyizova-vneshnix-komand.html" target="_blank" rel="noopener"&gt;https://adn-cis.org/legkoe-sozdanie-knopok-na-lente-dlya-vyizova-vneshnix-komand.html&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jan 2020 16:19:05 GMT</pubDate>
    <dc:creator>bvgarbar</dc:creator>
    <dc:date>2020-01-21T16:19:05Z</dc:date>
    <item>
      <title>Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7441624#M55631</link>
      <description>&lt;P&gt;I am trying to close the active project(.rvt)/document in REVIT 2016 using c# API.&lt;/P&gt;&lt;P&gt;It is throwing below errors, I have tried multiple codes but all are throwing different exceptions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added my code to open the document and the code I tried, please go through this and revert back with the solution ASAP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I have written to open the document:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;  commandData.Application.OpenAndActivateDocument(@"D:\REVIT\IBG Projects\C12\C12_type C12 for export 12 sep central.rvt");&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried below codes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp; SendKeys.SendWait("^{F4}"); - Not giving any error though not closing the document.&lt;/LI&gt;&lt;LI&gt;&lt;PRE&gt;var placeholderFile = @"C:\placeholder.rvt";
var doc = commandData.Application.ActiveUIDocument.Document;
var file = doc.PathName;
var docPlaceholder = commandData.Application.OpenAndActivateDocument(placeholderFile);
doc.Close(false);
var uidoc = commandData.Application.OpenAndActivateDocument(file);
docPlaceholder.Document.Close(false);&lt;/PRE&gt;&lt;/LI&gt;&lt;LI&gt;commandData.Application.ActiveUIDocument.SaveAndClose();&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I tried code from bellow two links&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://adndevblog.typepad.com/aec/2015/07/revitapi-close-active-document.html" target="_blank"&gt;http://adndevblog.typepad.com/aec/2015/07/revitapi-close-active-document.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2010/10/closing-the-active-document-and-why-not-to.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2010/10/closing-the-active-document-and-why-not-to.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached the error came on my screen after adding below code.&lt;/P&gt;&lt;PRE&gt;docPlaceholder.Document.Close(false);&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please reply ASAP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 07 Oct 2017 06:26:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7441624#M55631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-07T06:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7450776#M55632</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;This code seems fine to me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var placeholderFile = @"C:\placeholder.rvt";
var doc = commandData.Application.ActiveUIDocument.Document;
var file = doc.PathName;
var docPlaceholder = commandData.Application.OpenAndActivateDocument(placeholderFile);
doc.Close(false);
var uidoc = commandData.Application.OpenAndActivateDocument(file);
docPlaceholder.Document.Close(false);&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Getting the error means that the reloading of the document has failed. I suspect you are in a newly created document, that has no PathName assigned yet.&lt;/P&gt;
&lt;P&gt;Check the value&amp;nbsp;of the variable&amp;nbsp; file.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2017 11:10:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7450776#M55632</guid>
      <dc:creator>FAIR59</dc:creator>
      <dc:date>2017-10-11T11:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7503823#M55633</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;I am trying the below code.&lt;/P&gt;&lt;P&gt;Giving the same error can you please help me on that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elementsArg)
        {
   

            commandData.Application.OpenAndActivateDocument(@"D:\REVIT\IBG Projects\C12S\C12S_type C12s for export 12 sep central_old.rvt");
            


            var placeholderFile = @"D:\REVIT\IBG Projects\C12S\C12S_type C12s for export 12 sep central_old.rvt";
            var doc = commandData.Application.ActiveUIDocument.Document;
            var file = doc.PathName;
            var docPlaceholder = commandData.Application.OpenAndActivateDocument(placeholderFile);
            doc.Close(false);
            var uidoc = commandData.Application.OpenAndActivateDocument(file);
            docPlaceholder.Document.Close(false);

}&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Oct 2017 06:34:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7503823#M55633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-31T06:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7504270#M55634</link>
      <description>&lt;P&gt;the filename for the first project is equal to the filename for the placeholder project.&lt;/P&gt;
&lt;P&gt;You try to open en close the same file.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 10:11:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/7504270#M55634</guid>
      <dc:creator>FAIR59</dc:creator>
      <dc:date>2017-10-31T10:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/8749700#M55635</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;Maybe someone has already found this solution to close active document in revit, i don't know)&lt;/P&gt;
&lt;P&gt;but I found the following method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RevitCommandId closeDoc = RevitCommandId.LookupPostableCommandId(PostableCommand.Close);&lt;/P&gt;
&lt;P&gt;uiapp.PostCommand(closeDoc);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bogdan.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 10:24:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/8749700#M55635</guid>
      <dc:creator>bvgarbar</dc:creator>
      <dc:date>2019-04-24T10:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/8750513#M55636</link>
      <description>&lt;P&gt;Shared for posterity by The Building Coder:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2019/04/close-doc-and-zero-doc-rvtsamples.html#5" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2019/04/close-doc-and-zero-doc-rvtsamples.html#5&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thank to you, Bogdan!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 15:09:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/8750513#M55636</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-04-24T15:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9108970#M55637</link>
      <description>&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;I have tried your suggestion but nothing happen.&lt;/P&gt;&lt;P&gt;What I am doing wrong?&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Rui&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 15:07:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9108970#M55637</guid>
      <dc:creator>rui.frazao.oliveira</dc:creator>
      <dc:date>2019-10-25T15:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9110889#M55638</link>
      <description>&lt;P&gt;Hi, Rui!&lt;/P&gt;&lt;P&gt;I checked again my method for Revit versions 15, 17 and 20. Everything works.&lt;/P&gt;&lt;P&gt;Please describe your problem in more detail or send your code to take a look at it.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bogdan.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 11:24:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9110889#M55638</guid>
      <dc:creator>bvgarbar</dc:creator>
      <dc:date>2019-10-27T11:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9112064#M55639</link>
      <description>&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Revit 2017 and I have the following code:&lt;/P&gt;&lt;PRE&gt;        public bool m_Close()
        {
            string ls_source = "RevitAddinServer::m_Close";
            try
            {
                ib_closedByEvent = false;

                //AddinGlobal.ActiveDocument.Close();
                RevitCommandId closeDoc = RevitCommandId.LookupPostableCommandId(PostableCommand.Close);
                AddinGlobal.uiapp.PostCommand(closeDoc);

                ib_closedByEvent = true;
                return true;
            }
            catch (Exception ex)
            {
                System.Windows.MessageBox.Show(ls_source + "\n" + ex.Message, "e-grou Message", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
                return false;
            }
        }&lt;/PRE&gt;&lt;P&gt;And I call it from a button in my custom ribbon bar, after open a document and the document is not closed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I click more than once appears the message:&lt;/P&gt;&lt;P&gt;"Revit does not support more than one command are posted."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rui&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 11:28:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9112064#M55639</guid>
      <dc:creator>rui.frazao.oliveira</dc:creator>
      <dc:date>2019-10-28T11:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9112312#M55640</link>
      <description>&lt;P&gt;Hi, Rui!&lt;/P&gt;&lt;P&gt;I find it difficult to understand the part of the code that is taken out of context.&lt;BR /&gt;If possible, please post your solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bogdan.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 13:22:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9112312#M55640</guid>
      <dc:creator>bvgarbar</dc:creator>
      <dc:date>2019-10-28T13:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9113023#M55641</link>
      <description>&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;in attach a sample code project with my code.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rui&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 18:35:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9113023#M55641</guid>
      <dc:creator>rui.frazao.oliveira</dc:creator>
      <dc:date>2019-10-28T18:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9115097#M55642</link>
      <description>&lt;P&gt;Hi, Rui.&lt;/P&gt;&lt;P&gt;I looked at your code.&lt;/P&gt;&lt;P&gt;Please tell me what you want to do?&lt;/P&gt;&lt;P&gt;Do you want to make a button on the panel and when clicked, the project should close...or smth else?&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bogdan.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 15:37:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9115097#M55642</guid>
      <dc:creator>bvgarbar</dc:creator>
      <dc:date>2019-10-29T15:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9115376#M55643</link>
      <description>&lt;P&gt;Yes, I want to have a button on the panel and when clicked, "do something"... and at the end of that "something" the active document should close.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At my sample code I ignored the part "do something" (that I already control) and just tried to close the active document (the part that I didn't know how to do).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: I have similar addins in AutoCAD and Inventor, and in both I have always ways in API to close the active document by API, but unhappily in Revit the method "ActiveDocument.Close()" don't work as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rui&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 17:29:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9115376#M55643</guid>
      <dc:creator>rui.frazao.oliveira</dc:creator>
      <dc:date>2019-10-29T17:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9116442#M55644</link>
      <description>&lt;P&gt;Hi, Rui!&lt;/P&gt;&lt;P&gt;I tried my solution again using ExternalCommand and IExternalEvent.&lt;BR /&gt;Yesterday, I uploaded your solution. At the same time, I noticed a strange effect for myself. When I start debug my solution using, the visual studio changes to your code and revit continues to do something, but all is unsuccessful.&lt;/P&gt;&lt;P&gt;I have an assumption that something went wrong with the addition of the panel and the purpose of the button.&lt;BR /&gt;As an alternative, I suggest you try using the VCRevitRibbonUtil library to add a panel and button. Next, try implementing through ExternalCommand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, When i've creating my solution, i used IExternalCommand. Smth done and if Result==true, then try post command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Bogdan.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 08:27:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9116442#M55644</guid>
      <dc:creator>bvgarbar</dc:creator>
      <dc:date>2019-10-30T08:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9264000#M55645</link>
      <description>&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;Did you have some sample using the VCRevitRibbonUtil library to add a panel and button?&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Rui&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 10:42:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9264000#M55645</guid>
      <dc:creator>rui.frazao.oliveira</dc:creator>
      <dc:date>2020-01-21T10:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9264850#M55646</link>
      <description>&lt;P&gt;Hi, Rui!&lt;/P&gt;&lt;P&gt;You can see this sample&lt;/P&gt;&lt;P&gt;(&amp;nbsp;&lt;A href="https://adn-cis.org/legkoe-sozdanie-knopok-na-lente-dlya-vyizova-vneshnix-komand.html" target="_blank" rel="noopener"&gt;https://adn-cis.org/legkoe-sozdanie-knopok-na-lente-dlya-vyizova-vneshnix-komand.html&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 16:19:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9264850#M55646</guid>
      <dc:creator>bvgarbar</dc:creator>
      <dc:date>2020-01-21T16:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Close Active Project/Document in REVIT 2016 using c# API</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9272097#M55647</link>
      <description>&lt;P&gt;&lt;FONT face="Calibri" color="#000000"&gt;Hi Bogdan,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#000000"&gt;Creating the ribbon with &lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;Autodesk.Revit.UI&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#000000"&gt;instead of&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;Autodesk.Windows&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#000000"&gt;works well!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#000000"&gt;Thanks &amp;amp; regards,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#000000"&gt;Rui&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 10:27:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/close-active-project-document-in-revit-2016-using-c-api/m-p/9272097#M55647</guid>
      <dc:creator>rui.frazao.oliveira</dc:creator>
      <dc:date>2020-01-24T10:27:00Z</dc:date>
    </item>
  </channel>
</rss>

