<?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: Please explain accessing FamilySymbol Name Parameter in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5892546#M70230</link>
    <description>&lt;P&gt;I must say to thanks you, i was crazy when i want to get Name of familytype, but can not i don't know why, and i see your topic. Thanks you moa moa moa&lt;/P&gt;</description>
    <pubDate>Wed, 04 Nov 2015 16:36:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-04T16:36:26Z</dc:date>
    <item>
      <title>Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5837087#M70227</link>
      <description>&lt;P&gt;Can someone please explain why accessing a family Symbol's name parameter is so unusual. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FamSym.Name&lt;/P&gt;&lt;P&gt;This looks like it should work when I look at the help file, and I've seen examples of this being used online. &amp;nbsp;However, if I use it in my Python scripts I get an error saying that property doesn't exist. &amp;nbsp;To get around this I have to use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FamSym.get_Parameter(BuiltInParameter.SYMBOL_NAME_PARAM)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This obviously works, but it's been a hang up while I'm working, and I'm interested to know why I have to handle this differently than other object&amp;nbsp;names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 15:04:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5837087#M70227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-29T15:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5845424#M70228</link>
      <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm no expert with the RevitPythonShell, but like you said I have seen other examples in the past before using similar behaivor to obtain the Family Symbol name. Have you tried FamSym.Family.Name ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are 2 links where I saw this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://wiki.theprovingground.org/revit-api-py-family&amp;nbsp;" target="_blank"&gt;http://wiki.theprovingground.org/revit-api-py-family&amp;nbsp;&lt;/A&gt;&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;</description>
      <pubDate>Mon, 05 Oct 2015 16:33:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5845424#M70228</guid>
      <dc:creator>rosalesduquej</dc:creator>
      <dc:date>2015-10-05T16:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5849188#M70229</link>
      <description>&lt;P&gt;Hi Jaime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for responding. &amp;nbsp;Unfortunately FamSym.Family.Name will return the name of the family. &amp;nbsp;I am looking for the name of Type within that family, which in Revit-API-land is called the Symbol. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you open up the RPS you can see the difference between FamSym.Family.Name and FamSym.&lt;SPAN&gt;get_Parameter(BuiltInParameter.SYMBOL_NAME_&lt;/SPAN&gt;&lt;SPAN&gt;PARAM)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other thoughts?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 13:22:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5849188#M70229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-07T13:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5892546#M70230</link>
      <description>&lt;P&gt;I must say to thanks you, i was crazy when i want to get Name of familytype, but can not i don't know why, and i see your topic. Thanks you moa moa moa&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2015 16:36:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/5892546#M70230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T16:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7959149#M70231</link>
      <description>&lt;P&gt;Its been some time now. But I ran across the same problem. Wondering if there&amp;nbsp;have been any discoveries in the past couple years on this topic.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 16:25:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7959149#M70231</guid>
      <dc:creator>jgemperline</dc:creator>
      <dc:date>2018-04-25T16:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7960217#M70232</link>
      <description>&lt;P&gt;In Python you can simply collect all elements of that Category (below example is for Pipe Fitting), then iterate through&amp;nbsp; with a simple list comprehension, and you can get the Type Names:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PIPE_FITTINGS = FilteredElementCollector(doc).OfClass(FamilySymbol).OfCategory(BuiltInCategory.OST_PipeFitting).ToElements()&lt;/P&gt;&lt;P&gt;PIPE_FITTINGS_TYPES_NAMES = [i.get_Parameter(BuiltInParameter.SYMBOL_NAME_PARAM).AsString() for i in PIPE_FITTINGS]&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 22:41:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7960217#M70232</guid>
      <dc:creator>studio-a-int</dc:creator>
      <dc:date>2018-04-25T22:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7963417#M70233</link>
      <description>&lt;P&gt;To get the Name of the symbol I was expecting to use something like:&lt;/P&gt;&lt;P&gt;familysymbol.Name&lt;/P&gt;&lt;P&gt;The proposed solution feels more like a workaround. It works but when I walk through the API dock it seems like Name&amp;nbsp;should work too as&amp;nbsp;one of its properties. I'm new to this stuff so I could be way off.&lt;/P&gt;&lt;P&gt;What am I missing here?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2018 21:15:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7963417#M70233</guid>
      <dc:creator>jgemperline</dc:creator>
      <dc:date>2018-04-26T21:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7967581#M70234</link>
      <description>&lt;P&gt;If you leave it as an Element without casting to FamilySymbol then can&amp;nbsp;you still read the .Name property? I think this is true.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some odd unknown reason .Name is&amp;nbsp;changed at ElementType level to make it WriteOnly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WriteOnly properties are a mystery to me as far as the RevitAPI is concerned. I'm allowed to name something but I can't know it's existing name???&lt;/P&gt;</description>
      <pubDate>Sun, 29 Apr 2018 01:05:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7967581#M70234</guid>
      <dc:creator>RPTHOMAS108</dc:creator>
      <dc:date>2018-04-29T01:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7968982#M70235</link>
      <description>&lt;P&gt;This has been my go-to solution as well. Being unable to access FamilySymbol.Name seems like a pretty strange omission!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 08:33:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/7968982#M70235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-30T08:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/9712477#M70236</link>
      <description>&lt;P&gt;Agreed - there still seems to be something buggy about FamilySymbol.Name.&lt;/P&gt;&lt;P&gt;Access the value via the BuiltInParameter for more reliability!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2020 10:00:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/9712477#M70236</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-26T10:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/9714548#M70237</link>
      <description>&lt;LI-CODE lang="general"&gt;symbol.Name&lt;/LI-CODE&gt;&lt;P&gt;it is so weird that this doesn't work for you(in C# it work). Family Symbol have changed Set, but you should still be capable using a get from Element class. Shouldn't get be inheritance from Element class? why this work different in C#?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2020 08:39:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/9714548#M70237</guid>
      <dc:creator>MarryTookMyCoffe</dc:creator>
      <dc:date>2020-08-27T08:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/9714728#M70238</link>
      <description>&lt;P&gt;It's overridden as WriteOnly at ElementType inheritance level. There is no real issue in some respects, you just get the name before casting to FamilySymbol or some other ElementType. Can also cast an ElementType to an Element to get the name value.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2020 10:24:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/9714728#M70238</guid>
      <dc:creator>RPTHOMAS108</dc:creator>
      <dc:date>2020-08-27T10:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Please explain accessing FamilySymbol Name Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/12151420#M70239</link>
      <description>&lt;P&gt;Thank you!!! Finally. This solution worked for what I needed. I just wanted the available family type names in a list.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Aug 2023 18:31:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/please-explain-accessing-familysymbol-name-parameter/m-p/12151420#M70239</guid>
      <dc:creator>jkirk-OMM</dc:creator>
      <dc:date>2023-08-05T18:31:27Z</dc:date>
    </item>
  </channel>
</rss>

