<?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: How I get all names of a Style File Markersymbols with ArcPY in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239864#M18664</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer. I work with ArcGIS V10.1 and I created the following Python Skript:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;import arcpy&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;style_file = "C:\ArcGIS\Styles"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;style_folder = "MVV_Netrion_Bestand_Gas.style"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;styles = arcpy.mapping.ListStyleItems(style_file, style_folder)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;for style in styles:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;print style.itemName&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the following errors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Traceback (most recent call last):&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; File "C:\ArcGIS\python\read_style.py", line 6, in &amp;lt;module&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; styles = arcpy.mapping.ListStyleItems(style_file, style_folder)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;1599, in ListStyleItems&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; return convertArcObjectToPythonObject(arcgisscripting._listStyleItems(*gp_fi&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;xargs([style_file_path, style_folder_name, wildcard], True, False)))&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ValueError: StyleGalleryObject: Input value is not valid&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Whats the problem?&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Feb 2017 10:52:11 GMT</pubDate>
    <dc:creator>UlfSalecker</dc:creator>
    <dc:date>2017-02-07T10:52:11Z</dc:date>
    <item>
      <title>How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239862#M18662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I build a new true Type Font and I will check the names&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 17:09:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239862#M18662</guid>
      <dc:creator>UlfSalecker</dc:creator>
      <dc:date>2017-02-02T17:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239863#M18663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this work for you:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;style_file &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# path to style file&lt;/SPAN&gt;
style_folder &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Marker Symbols"&lt;/SPAN&gt;

styles &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListStyleItems&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;style_file&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; style_folder&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; style &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; styles&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; style&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itemName&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:04:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239863#M18663</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T12:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239864#M18664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer. I work with ArcGIS V10.1 and I created the following Python Skript:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;import arcpy&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;style_file = "C:\ArcGIS\Styles"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;style_folder = "MVV_Netrion_Bestand_Gas.style"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;styles = arcpy.mapping.ListStyleItems(style_file, style_folder)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;for style in styles:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;print style.itemName&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the following errors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Traceback (most recent call last):&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; File "C:\ArcGIS\python\read_style.py", line 6, in &amp;lt;module&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; styles = arcpy.mapping.ListStyleItems(style_file, style_folder)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;1599, in ListStyleItems&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; return convertArcObjectToPythonObject(arcgisscripting._listStyleItems(*gp_fi&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;xargs([style_file_path, style_folder_name, wildcard], True, False)))&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ValueError: StyleGalleryObject: Input value is not valid&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Whats the problem?&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 10:52:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239864#M18664</guid>
      <dc:creator>UlfSalecker</dc:creator>
      <dc:date>2017-02-07T10:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239865#M18665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks the wrong way round to me.&lt;/P&gt;&lt;P&gt;&lt;EM style="background-color: #ffffff; border: 0px;"&gt;style_file = "C:\ArcGIS\Styles"&lt;/EM&gt;&lt;BR style="background-color: #ffffff;" /&gt;&lt;EM style="background-color: #ffffff; border: 0px;"&gt;style_folder = "MVV_Netrion_Bestand_Gas.style"&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 12:37:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239865#M18665</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2017-02-07T12:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239866#M18666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh sorry, but it doesn work. Ich think its the wrong ArcPY Version. I work with ArcGIS V10.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# C:\Python27\ArcGIS10.1\python.exe C:\ArcGIS\python\read_style.py&lt;/P&gt;&lt;P&gt;import arcpy&lt;BR /&gt;style_folder = "C:\ArcGIS\Styles"&lt;BR /&gt;style_file = "MVV_Netrion_Bestand_Gas.style"&lt;/P&gt;&lt;P&gt;styles = arcpy.mapping.ListStyleItems(style_file, style_folder)&lt;BR /&gt;for style in styles:&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;print style.itemName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C:\Users\u2267&amp;gt;C:\Python27\ArcGIS10.1\python.exe C:\ArcGIS\python\read_style.py&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt; File "C:\ArcGIS\python\read_style.py", line 7, in &amp;lt;module&amp;gt;&lt;BR /&gt; styles = arcpy.mapping.ListStyleItems(style_file, style_folder)&lt;BR /&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line&lt;BR /&gt;1599, in ListStyleItems&lt;BR /&gt; return convertArcObjectToPythonObject(arcgisscripting._listStyleItems(*gp_fixargs([style_file_path, style_folder_name, wildcard], True, False)))&lt;BR /&gt;IOError&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 12:58:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239866#M18666</guid>
      <dc:creator>UlfSalecker</dc:creator>
      <dc:date>2017-02-07T12:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239867#M18667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;style_file still needs to be a full path to the style file, including the filename itself.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-mapping/liststyleitems.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-mapping/liststyleitems.htm"&gt;ListStyleItems—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/316657_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 13:43:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239867#M18667</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2017-02-07T13:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239868#M18668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It isn't your version, I just ran the following on an ArcGIS 10.1 (build 3143) install:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; 
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; style_dir &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetInstallInfo&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'InstallDir'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Styles'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; style_file &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;style_dir&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'ESRI.style'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; style_folder &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Marker Symbols'&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; 
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; styles &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListStyleItems&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;style_file&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; style_folder&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; style &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; styles&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; style&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itemName
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; 
Circle &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
Square &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
Triangle &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
Rnd Square &lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;
Rnd Square &lt;SPAN class="number token"&gt;7&lt;/SPAN&gt;
Dam Lock
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please review the documentation.&amp;nbsp; The style folder name you need to pass isn't a directory on the file system, it is the name of the style folder in the style file itself that you want to get information about.&amp;nbsp; In this case, with marker symbols, it needs to be "Marker Symbols".&amp;nbsp; If you were interested in colors, it would be "Colors".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239868#M18668</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T12:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239869#M18669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's work. thanks a lot Joshua&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 17:51:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239869#M18669</guid>
      <dc:creator>UlfSalecker</dc:creator>
      <dc:date>2017-02-07T17:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: How I get all names of a Style File Markersymbols with ArcPY</title>
      <link>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239870#M18670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you got it working.&amp;nbsp; In order for others to know this thread is answered, please mark a response as correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2017 18:29:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-i-get-all-names-of-a-style-file-markersymbols/m-p/239870#M18670</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-02-07T18:29:59Z</dc:date>
    </item>
  </channel>
</rss>

