<?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: Hide Attribute Fields in an attribute table in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222384#M8893</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you tried this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-field-visibility-and-alias/td-p/816885" target="_self"&gt;How-to-change-field-visibility-and-alias&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Oct 2022 05:19:21 GMT</pubDate>
    <dc:creator>GKmieliauskas</dc:creator>
    <dc:date>2022-10-17T05:19:21Z</dc:date>
    <item>
      <title>Hide Attribute Fields in an attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222348#M8892</link>
      <description>&lt;P&gt;Goal --- Hide Attribute Fields in an attribute table&lt;/P&gt;&lt;P&gt;Given a feature class with an attribute table, how would attribute fields be programmatically shown/hidden?&lt;/P&gt;&lt;P&gt;Places already researched...&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Editing" target="_blank"&gt;ProSnippets Editing · Esri/arcgis-pro-sdk Wiki (github.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic29136.html" target="_blank"&gt;ArcGIS.Desktop.Editing.Controls Namespace—ArcGIS Pro&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2022 23:44:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222348#M8892</guid>
      <dc:creator>JeromeHaaland</dc:creator>
      <dc:date>2022-10-16T23:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Attribute Fields in an attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222384#M8893</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you tried this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-field-visibility-and-alias/td-p/816885" target="_self"&gt;How-to-change-field-visibility-and-alias&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 05:19:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222384#M8893</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2022-10-17T05:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Attribute Fields in an attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222454#M8894</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;var invisibleFields = new[] { "OBJECTID", "HIDDEN_FIELD" };
var layer = MapView.Active.Map.GetLayersAsFlattenedList().OfType&amp;lt;FeatureLayer&amp;gt;().FirstOrDefault();
var fields = layer.GetFieldDescriptions();
foreach (var field in fields)
{
	field.IsVisible = !invisibleFields.Contains(field.Name);
}
layer.SetFieldDescriptions(fields);&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Oct 2022 12:30:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222454#M8894</guid>
      <dc:creator>FridjofSchmidt</dc:creator>
      <dc:date>2022-10-17T12:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Attribute Fields in an attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222976#M8908</link>
      <description>&lt;P&gt;Thank You... This worked perfectly.&amp;nbsp; Nice little piece of code.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 18:26:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222976#M8908</guid>
      <dc:creator>JeromeHaaland</dc:creator>
      <dc:date>2022-10-18T18:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Attribute Fields in an attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222980#M8909</link>
      <description>&lt;P&gt;Gintautas,&lt;/P&gt;&lt;P&gt;Thank You for your reply.&lt;/P&gt;&lt;P&gt;Have a Good Day&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 18:27:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1222980#M8909</guid>
      <dc:creator>JeromeHaaland</dc:creator>
      <dc:date>2022-10-18T18:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Attribute Fields in an attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1325589#M10323</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a point feature class with more than 50 fields that mainly consist of fixed values ("Yes" or "No"). I am looking for an approach to only show fields if they have a "Yes" value when I select a feature. For example, when I select a row or pick a point from the map, it only shows fields "A", "B", and "D" where they have a "Yes" value, but don't show field "C" that has a "No" value. And when I select another point, it should show its fields that have a "Yes" value which could be field "A" and "C".&lt;/P&gt;&lt;P&gt;Your feedback appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 19:30:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/hide-attribute-fields-in-an-attribute-table/m-p/1325589#M10323</guid>
      <dc:creator>Mehdi20</dc:creator>
      <dc:date>2023-09-05T19:30:36Z</dc:date>
    </item>
  </channel>
</rss>

