<?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 How to modify Field properties with python? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508721#M39944</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering how to change a Double field values formatting. I am looking specifically to add the thousand separator on the Pad with zero.&lt;/P&gt;&lt;P&gt;Usually, I right click on the field in the attributes tables, then click on properties. On the field properties interface, I click on numeric and I select Thousand separator and Pad with zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can do that with python (arcpy)??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Feb 2015 00:48:55 GMT</pubDate>
    <dc:creator>SaidAkif</dc:creator>
    <dc:date>2015-02-04T00:48:55Z</dc:date>
    <item>
      <title>How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508721#M39944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering how to change a Double field values formatting. I am looking specifically to add the thousand separator on the Pad with zero.&lt;/P&gt;&lt;P&gt;Usually, I right click on the field in the attributes tables, then click on properties. On the field properties interface, I click on numeric and I select Thousand separator and Pad with zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can do that with python (arcpy)??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 00:48:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508721#M39944</guid>
      <dc:creator>SaidAkif</dc:creator>
      <dc:date>2015-02-04T00:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508722#M39945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think these properties are revealed to Python (arcpy),&amp;nbsp; unless you want to use ArcObjects in Python.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create an additional field (type string) and write the formatted values to this field, but I don't think this is what you are looking for...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 00:57:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508722#M39945</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-02-04T00:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508723#M39946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to add to &lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt; correct summary...if it is for purely visual purposes, you could look at the python snippets section and format them in a text field &lt;A href="https://community.esri.com/docs/DOC-1927"&gt;Some Python Snippets&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 02:26:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508723#M39946</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-02-04T02:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508724#M39947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for your quick response&lt;/P&gt;&lt;P&gt;I want modify the properties of a field without criating one as proposed by Dan.&lt;/P&gt;&lt;P&gt;At least, is there a way to reach the properties od a layer (HTM poup, Fields, ....) with python&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 18:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508724#M39947</guid>
      <dc:creator>SaidAkif</dc:creator>
      <dc:date>2015-02-04T18:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508725#M39948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only field properties that can be exposed and changed are listed here in&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Modifying_field_properties/003n00000100000000/"&gt; modify field properties &lt;/A&gt;if you have an advanced license&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 18:59:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508725#M39948</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-02-04T18:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508726#M39949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 19:32:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508726#M39949</guid>
      <dc:creator>SaidAkif</dc:creator>
      <dc:date>2015-02-04T19:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Field properties with python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508727#M39950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have similar scenario where I have to modify the length of the field. Can this be implemented with arcobjects?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 19:39:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-modify-field-properties-with-python/m-p/508727#M39950</guid>
      <dc:creator>sapnas</dc:creator>
      <dc:date>2017-07-13T19:39:07Z</dc:date>
    </item>
  </channel>
</rss>

