<?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: Addin fail to implement the change after hitting 'OK' button in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035793#M11422</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8461394"&gt;@Mohamed_Arshad&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response mate. Still not showing any exception message.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes I am using Form.ShowDialog().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other solution? By the way its working successfully with Revit Addin Manager but why is not working as an addin. The setup is correct as other tools are working perfectly fine.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jun 2023 10:13:46 GMT</pubDate>
    <dc:creator>lbhardwaj4ZUA6</dc:creator>
    <dc:date>2023-06-15T10:13:46Z</dc:date>
    <item>
      <title>Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035383#M11418</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am using Revit addin manager and the code is running perfectly fine but when I run the .msi file which I created using that code and install it in my revit, it shows the winform exactly similar to what it was showing when working with revit addin manager and do the required changes as well but when I hit ok button which is "this. Ok" in the button event handler, its undoing the changes I have done. It is strange because the process is same but its not working in the revit.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any idea why?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 06:51:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035383#M11418</guid>
      <dc:creator>lbhardwaj4ZUA6</dc:creator>
      <dc:date>2023-06-15T06:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035501#M11419</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11739818"&gt;@lbhardwaj4ZUA6&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You having issue in MSI File Extracted Dll Right?&lt;/P&gt;&lt;P&gt;While Click on the OK Button, what changes is Happening exactly? Can you explain in detail.&lt;BR /&gt;While Click on the OK Button Plugin not working ?&lt;BR /&gt;&lt;BR /&gt;Can you please answer the above question, So that it will help me in solving your query.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 07:49:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035501#M11419</guid>
      <dc:creator>Mohamed_Arshad</dc:creator>
      <dc:date>2023-06-15T07:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035576#M11420</link>
      <description>Hi Harshad,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Apologize for not clearing my statement. Right, I have created .msi file with the same code.&lt;BR /&gt;&lt;BR /&gt;Actually, I have written a code for pinning and unpinning the batch category in revit and its working perfectly fine (its pinning or unpinning the selected batch categories) using revit addin manager and when I install this code in revit as an addin, it doing everything same but when I close the winform, its undoing the changes.&lt;BR /&gt;&lt;BR /&gt;Below is the code for your reference.&lt;BR /&gt;&lt;BR /&gt;using Autodesk.Revit.DB;&lt;BR /&gt;using Autodesk.Revit.UI;&lt;BR /&gt;using System;&lt;BR /&gt;using System.Collections.Generic;&lt;BR /&gt;using System.Windows.Forms;&lt;BR /&gt;using Autodesk.Revit.Attributes;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;namespace myFirstPlugin&lt;BR /&gt;{&lt;BR /&gt;public partial class PinCategory : System.Windows.Forms.Form&lt;BR /&gt;{&lt;BR /&gt;private Dictionary&amp;lt;string, BuiltInCategory&amp;gt; categoryMap;&lt;BR /&gt;private List&amp;lt;int&amp;gt; positions = new List&amp;lt;int&amp;gt;();&lt;BR /&gt;private Autodesk.Revit.DB.Document doc;&lt;BR /&gt;&lt;BR /&gt;public PinCategory(Autodesk.Revit.DB.Document doc)&lt;BR /&gt;{&lt;BR /&gt;InitializeComponent();&lt;BR /&gt;this.doc = doc;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void PinCategory_Load(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;// Retrieve all built-in categories&lt;BR /&gt;Array builtInCategories = Enum.GetValues(typeof(BuiltInCategory));&lt;BR /&gt;List&amp;lt;string&amp;gt; categoryNames = new List&amp;lt;string&amp;gt;();&lt;BR /&gt;categoryMap = new Dictionary&amp;lt;string, BuiltInCategory&amp;gt;();&lt;BR /&gt;&lt;BR /&gt;foreach (var builtInCategory in builtInCategories)&lt;BR /&gt;{&lt;BR /&gt;BuiltInCategory category = (BuiltInCategory)builtInCategory;&lt;BR /&gt;string categoryName = category.ToString().Replace("OST_", "");&lt;BR /&gt;categoryNames.Add(categoryName);&lt;BR /&gt;categoryMap[categoryName] = category;&lt;BR /&gt;}&lt;BR /&gt;// Sort the category names alphabetically&lt;BR /&gt;categoryNames.Sort();&lt;BR /&gt;&lt;BR /&gt;// Populate Categories_button with category names&lt;BR /&gt;Values_checkedlistbox.DataSource = categoryNames;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void Values_checkedlistbox_SelectedIndexChanged_1(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;// Check if the shift key is pressed&lt;BR /&gt;if (System.Windows.Forms.Control.ModifierKeys == Keys.Shift)&lt;BR /&gt;{&lt;BR /&gt;// Get the selected index of the current item&lt;BR /&gt;int currentIndex = Values_checkedlistbox.SelectedIndex;&lt;BR /&gt;&lt;BR /&gt;// Check if there are any previously selected items&lt;BR /&gt;if (positions.Count &amp;gt; 0)&lt;BR /&gt;{&lt;BR /&gt;// Get the last selected index&lt;BR /&gt;int lastIndex = positions[positions.Count - 1];&lt;BR /&gt;&lt;BR /&gt;// Get the minimum and maximum indices&lt;BR /&gt;int minIndex = Math.Min(currentIndex, lastIndex);&lt;BR /&gt;int maxIndex = Math.Max(currentIndex, lastIndex);&lt;BR /&gt;&lt;BR /&gt;// Select the range of items between the minimum and maximum indices&lt;BR /&gt;for (int i = minIndex; i &amp;lt;= maxIndex; i++)&lt;BR /&gt;{&lt;BR /&gt;Values_checkedlistbox.SetItemChecked(i, true);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;// No previously selected items, so just select the current item&lt;BR /&gt;Values_checkedlistbox.SetItemChecked(currentIndex, true);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;// Add the current index to the positions list&lt;BR /&gt;positions.Add(currentIndex);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void checkBox1_CheckedChanged_1(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;bool isAllChecked = checkBox1.Checked;&lt;BR /&gt;&lt;BR /&gt;for (int i = 0; i &amp;lt; Values_checkedlistbox.Items.Count; i++)&lt;BR /&gt;{&lt;BR /&gt;Values_checkedlistbox.SetItemChecked(i, isAllChecked);&lt;BR /&gt;}&lt;BR /&gt;checkBox1.Checked = isAllChecked;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void Pin_radionbutton_CheckedChanged_1(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void Unpin_radionbutton_CheckedChanged_1(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void Click_Click_1(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;// Get the selected radio button&lt;BR /&gt;bool pinSelected = Pin_radionbutton.Checked; // Replace with your actual pin radio button control&lt;BR /&gt;bool unpinSelected = Unpin_radionbutton.Checked; // Replace with your actual unpin radio button control&lt;BR /&gt;&lt;BR /&gt;if (pinSelected || unpinSelected)&lt;BR /&gt;{&lt;BR /&gt;// Get the selected categories&lt;BR /&gt;List&amp;lt;string&amp;gt; selectedCategories = new List&amp;lt;string&amp;gt;();&lt;BR /&gt;foreach (var item in Values_checkedlistbox.CheckedItems)&lt;BR /&gt;{&lt;BR /&gt;selectedCategories.Add(item.ToString());&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;if (selectedCategories.Count &amp;gt; 0)&lt;BR /&gt;{&lt;BR /&gt;// Start a new transaction&lt;BR /&gt;using (Transaction trans = new Transaction(doc, "Pin/Unpin Elements"))&lt;BR /&gt;{&lt;BR /&gt;try&lt;BR /&gt;{&lt;BR /&gt;// Start the transaction&lt;BR /&gt;trans.Start();&lt;BR /&gt;&lt;BR /&gt;// Retrieve elements of selected categories&lt;BR /&gt;List&amp;lt;ElementId&amp;gt; elementIds = new List&amp;lt;ElementId&amp;gt;();&lt;BR /&gt;&lt;BR /&gt;foreach (var category in selectedCategories)&lt;BR /&gt;{&lt;BR /&gt;BuiltInCategory builtInCategory = categoryMap[category];&lt;BR /&gt;ElementCategoryFilter categoryFilter = new ElementCategoryFilter(builtInCategory);&lt;BR /&gt;FilteredElementCollector collector = new FilteredElementCollector(doc).WherePasses(categoryFilter);&lt;BR /&gt;elementIds.AddRange(collector.ToElementIds());&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;int totalCount = 0;&lt;BR /&gt;foreach (ElementId elementId in elementIds)&lt;BR /&gt;{&lt;BR /&gt;Element element = doc.GetElement(elementId);&lt;BR /&gt;&lt;BR /&gt;try&lt;BR /&gt;{&lt;BR /&gt;// Pin the element&lt;BR /&gt;if (pinSelected &amp;amp;&amp;amp; !element.Pinned)&lt;BR /&gt;{&lt;BR /&gt;element.Pinned = true;&lt;BR /&gt;totalCount++; // Increment the count of replaced values&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;// Unpin the element&lt;BR /&gt;if (unpinSelected &amp;amp;&amp;amp; element.Pinned)&lt;BR /&gt;{&lt;BR /&gt;element.Pinned = false;&lt;BR /&gt;totalCount--; // Increment the count of replaced values&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;catch (Exception ex)&lt;BR /&gt;{&lt;BR /&gt;// Handle any exceptions that occur during the transaction&lt;BR /&gt;// You can display a message box or log the error&lt;BR /&gt;//MessageBox.Show($"Error occurred while pinning/unpinning element: {ex.Message}");&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;// Commit the transaction&lt;BR /&gt;trans.Commit();&lt;BR /&gt;&lt;BR /&gt;// Show a message indicating the operation was successful&lt;BR /&gt;TaskDialog.Show("Success", $"{totalCount} Elements pinned/unpinned successfully.");&lt;BR /&gt;}&lt;BR /&gt;catch (Exception ex)&lt;BR /&gt;{&lt;BR /&gt;// Handle any exceptions that occur during the transaction&lt;BR /&gt;// You can display a message box or log the error&lt;BR /&gt;//MessageBox.Show($"Error occurred during the transaction: {ex.Message}");&lt;BR /&gt;&lt;BR /&gt;// Roll back the transaction&lt;BR /&gt;trans.RollBack();&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;// Show a message indicating no categories were selected&lt;BR /&gt;TaskDialog.Show("Warning", "No categories selected.");&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;// Show a message indicating no pin/unpin option was selected&lt;BR /&gt;TaskDialog.Show("Warning", "Please select either Pin or Unpin option.");&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;private void OK_Click_1(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;this.Close();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;private void label9_Click(object sender, EventArgs e)&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}</description>
      <pubDate>Thu, 15 Jun 2023 08:29:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035576#M11420</guid>
      <dc:creator>lbhardwaj4ZUA6</dc:creator>
      <dc:date>2023-06-15T08:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035768#M11421</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11739818"&gt;@lbhardwaj4ZUA6&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Below Catch, Instead of Putting RollBack(), Use Some TaskDialog to See the Exception Message. I think due to some exception while pinning opening it Roll Back the Transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you using Form.Show() or Form.ShowDialog() ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arshad99_0-1686823151852.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1227976iAA1BDC3C5C186CE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="arshad99_0-1686823151852.png" alt="arshad99_0-1686823151852.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 10:02:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035768#M11421</guid>
      <dc:creator>Mohamed_Arshad</dc:creator>
      <dc:date>2023-06-15T10:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035793#M11422</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8461394"&gt;@Mohamed_Arshad&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response mate. Still not showing any exception message.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes I am using Form.ShowDialog().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other solution? By the way its working successfully with Revit Addin Manager but why is not working as an addin. The setup is correct as other tools are working perfectly fine.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 10:13:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035793#M11422</guid>
      <dc:creator>lbhardwaj4ZUA6</dc:creator>
      <dc:date>2023-06-15T10:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035801#M11423</link>
      <description>&lt;P&gt;Can you Please Try the Installer Extracted Addin with Addin-Manager?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 10:16:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12035801#M11423</guid>
      <dc:creator>Mohamed_Arshad</dc:creator>
      <dc:date>2023-06-15T10:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12036790#M11424</link>
      <description>&lt;P&gt;Is the Execute method in your command class that opens the form returning Result.Succeeded? If it doesn't, then all your changes will be reverted.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 16:15:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12036790#M11424</guid>
      <dc:creator>mhannonQ65N2</dc:creator>
      <dc:date>2023-06-15T16:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12036826#M11425</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its there&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lbhardwaj4ZUA6_1-1686846296884.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1228226i676E2827046D0A09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lbhardwaj4ZUA6_1-1686846296884.png" alt="lbhardwaj4ZUA6_1-1686846296884.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 16:25:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12036826#M11425</guid>
      <dc:creator>lbhardwaj4ZUA6</dc:creator>
      <dc:date>2023-06-15T16:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12036857#M11426</link>
      <description>&lt;P&gt;You need to set the form's&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.form.dialogresult?view=netframework-4.8.1#system-windows-forms-form-dialogresult" target="_blank" rel="noopener"&gt;DialogResult property&lt;/A&gt; to&amp;nbsp;DialogResult.OK before closing it to make ShowDialog() return DialogResult.OK.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Alternatively, you could set your OK button's DialogResult property to&amp;nbsp;DialogResult.OK in the designer and remove the click handler from it and clicking it will close the form and return DialogResult.OK.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 16:37:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12036857#M11426</guid>
      <dc:creator>mhannonQ65N2</dc:creator>
      <dc:date>2023-06-15T16:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Addin fail to implement the change after hitting 'OK' button</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12038017#M11427</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11739818"&gt;@lbhardwaj4ZUA6&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Kindly Refer the Below Image.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arshad99_0-1686889451831.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1228442i099EEAA9AAD70A35/image-size/medium?v=v2&amp;amp;px=400" role="button" title="arshad99_0-1686889451831.png" alt="arshad99_0-1686889451831.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8377999"&gt;@mhannonQ65N2&lt;/a&gt;&amp;nbsp; But How it will work on Addin- Manager That my Question?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 04:25:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/addin-fail-to-implement-the-change-after-hitting-ok-button/m-p/12038017#M11427</guid>
      <dc:creator>Mohamed_Arshad</dc:creator>
      <dc:date>2023-06-16T04:25:27Z</dc:date>
    </item>
  </channel>
</rss>

