<?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: View Filter Order in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5117000#M76882</link>
    <description>&lt;P&gt;Hi Colin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies for the delay in getting back to you. I don't have a resolution for the issue so I logged a change request with the engineering team and sent you the details separately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My engineering colleague had this to say:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*--------------&lt;/P&gt;&lt;P&gt;It turns out that the order of filters is saved, but is not reflected in what you get out from GetFilters(). &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is no way to read the filter order with the current API. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There IS a way to set the filter order – remove all filters with RemoveFilter(), then use AddFilter() in the desired order.&amp;nbsp; You’ll probably have to save and then reapply the associated overrides and visibility for each filter (SetFilterOverrides(), SetFilterVisibility()).&lt;/P&gt;&lt;P&gt;*---------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for not being more helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Gopinath&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jun 2014 00:28:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-06-26T00:28:30Z</dc:date>
    <item>
      <title>View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5003890#M76874</link>
      <description>&lt;P&gt;I've written an addin that succesfully copies view filters and their overrides from one view template to another, however the filters end up in a different sequence. &amp;nbsp;Having created the view templates myself, I think that the filters are being copied in order that they were added to the view template, however I used the UI controls to move filters up/down to achieve the desired sequence.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know if it's possible to match the filter sequence via the API?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2014 20:27:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5003890#M76874</guid>
      <dc:creator>colin_magner</dc:creator>
      <dc:date>2014-04-30T20:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5018640#M76875</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not see any API that directly allows you to change the order of the filters. However, here is something your could try to do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Get the collection of filters using the View.GetFilters method. The collection order is probably what you see in the UI.&lt;/P&gt;
&lt;P&gt;2) Remove the filters from the view using View.RemoveFilter.&lt;/P&gt;
&lt;P&gt;3) Use View.AddFilter to add filters in the order you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure if it helps but worth a try.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Gopinath&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2014 01:04:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5018640#M76875</guid>
      <dc:creator>gopinath.taget</dc:creator>
      <dc:date>2014-05-08T01:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5025568#M76876</link>
      <description>&lt;P&gt;Thanks for the suggestion Gopinath, but I don't think it resolves the issue.&amp;nbsp; My code removes all filters from a view template, then adds filters from another template using .GetFilters and adding each in turn using .AddFilter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From what I can tell, the API adds the filters based on the order in which the filters themselves were defined, rather than their order in the view they're being copied from, or the order in which they were originally added to the view.&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2014 10:05:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5025568#M76876</guid>
      <dc:creator>colin_magner</dc:creator>
      <dc:date>2014-05-12T10:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5027152#M76877</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please provide a snippet of code that shows how you copy the filters from the second template into the first?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gopinath&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2014 21:52:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5027152#M76877</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-12T21:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5027568#M76878</link>
      <description>&lt;P&gt;Sure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got two 'views' which I set to match the view template for the active view (TemplateActiveView) and the view template that I use to copy the settings from (TemplatePlan).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Autodesk.Revit.DB.&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;View&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; TemplateActiveView;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Autodesk.Revit.DB.&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;View&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; TemplatePlan;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;Prior to copying the filters I clear the current filters from TemplateActiveView&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;foreach&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;ElementId&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; id &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;in&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; TemplateActiveView.GetFilters())&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TemplateActiveView.RemoveFilter(id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then copy the filters and apply their override settings, by iterating through each filter in the 'template', getting its overrides, adding it to the template of the active view, then I retrieve the filter from the active view (by iteration, couldn't find a cleaner way) and apply the overrides and visibility settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;OverrideGraphicSettings&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; TemplateOverrides = &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;new &lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;OverrideGraphicSettings&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;();&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;foreach&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;ElementId&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; id &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;in&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; TemplatePlan.GetFilters())&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TemplateOverrides = TemplatePlan.GetFilterOverrides(id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TemplateActiveView.AddFilter(id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;foreach&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;&lt;FONT face="Consolas" size="2" color="#2b91af"&gt;ElementId&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; newID &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;in&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; TemplateActiveView.GetFilters())&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (m_doc.GetElement(newID).Name == m_doc.GetElement(id).Name)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TemplateActiveView.SetFilterOverrides(newID, TemplateOverrides);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TemplateActiveView.SetFilterVisibility(newID, TemplatePlan.GetFilterVisibility(id));&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&lt;FONT face="Consolas" size="2" color="#0000ff"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;break&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2014 07:22:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5027568#M76878</guid>
      <dc:creator>colin_magner</dc:creator>
      <dc:date>2014-05-13T07:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5032510#M76879</link>
      <description>&lt;P&gt;Well, your code seems fine. I have passed on your query to the engineering team. I will let you know what I learn. Thanks for your patience.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Gopinath&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 01:22:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5032510#M76879</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-15T01:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5032872#M76880</link>
      <description>&lt;P&gt;No problem, thanks for your input.&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 07:24:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5032872#M76880</guid>
      <dc:creator>colin_magner</dc:creator>
      <dc:date>2014-05-15T07:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5048496#M76881</link>
      <description>&lt;P&gt;Hi Colin,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your patience but I do not yet have any useful info. I will get back to you as soon as I have something.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Gopinath&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2014 01:31:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5048496#M76881</guid>
      <dc:creator>gopinath.taget</dc:creator>
      <dc:date>2014-05-22T01:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5117000#M76882</link>
      <description>&lt;P&gt;Hi Colin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies for the delay in getting back to you. I don't have a resolution for the issue so I logged a change request with the engineering team and sent you the details separately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My engineering colleague had this to say:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*--------------&lt;/P&gt;&lt;P&gt;It turns out that the order of filters is saved, but is not reflected in what you get out from GetFilters(). &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is no way to read the filter order with the current API. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There IS a way to set the filter order – remove all filters with RemoveFilter(), then use AddFilter() in the desired order.&amp;nbsp; You’ll probably have to save and then reapply the associated overrides and visibility for each filter (SetFilterOverrides(), SetFilterVisibility()).&lt;/P&gt;&lt;P&gt;*---------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for not being more helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Gopinath&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 00:28:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5117000#M76882</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-26T00:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5423405#M76883</link>
      <description>having exact the same issue, even cannot manually change its order unless delete and recreate</description>
      <pubDate>Tue, 25 Nov 2014 07:13:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/5423405#M76883</guid>
      <dc:creator>Ning_Zhou</dc:creator>
      <dc:date>2014-11-25T07:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/7282298#M76884</link>
      <description>&lt;P&gt;Has this been fixed in the new API? I am still having this problem &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2017 20:06:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/7282298#M76884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-07T20:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: View Filter Order</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/7297858#M76885</link>
      <description>&lt;P&gt;The wishlist item &lt;U&gt;&lt;STRONG&gt;CF-1486&lt;/STRONG&gt;&lt;/U&gt; [Need API to order the view filters on a view] that was raised based on the original thread ended up being closed again, since the original requester said it was of little importance to him.&lt;BR /&gt; &lt;BR /&gt;I suggest you do two things:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Submit this as an entry in the Revit Idea Station and ensure it gets many votes. Maybe it is already in there?&lt;/LI&gt;
&lt;LI&gt;Submit a business case explaining the importance of this wish for you, your customers, the community, Autodesk, your revenue, etc. to underline its importance.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;BR /&gt;I hope this helps.&lt;BR /&gt; &lt;BR /&gt;Cheers,&lt;BR /&gt; &lt;BR /&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 07:30:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-filter-order/m-p/7297858#M76885</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2017-08-14T07:30:46Z</dc:date>
    </item>
  </channel>
</rss>

