<?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 to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc. in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1506778#M11887</link>
    <description>&lt;P&gt;Looks like there are properties for various attributes that could change, and have to check to see if any one of them have changed, each of which is generating an ElementEventHint.PlacementChanged event...&lt;BR /&gt;&lt;BR /&gt;but they seem to be private properties, i.e.&amp;nbsp;for each element in&amp;nbsp;ElementEventArgs args.Elements, examine _placement... so may have to do it using reflection...&lt;BR /&gt;&lt;BR /&gt;for now just by placing a delay of 2 sec after handling for the first placment event before allowing next one to be handled... seem a good enough workaround...&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2024 18:00:06 GMT</pubDate>
    <dc:creator>Gurunara</dc:creator>
    <dc:date>2024-07-18T18:00:06Z</dc:date>
    <item>
      <title>How to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc.</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1504461#M11859</link>
      <description>&lt;P&gt;How to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc.&lt;/P&gt;&lt;P&gt;Also how to determine when a new&amp;nbsp;GraphicElement is added or existing ones are deleted?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 20:33:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1504461#M11859</guid>
      <dc:creator>Gurunara</dc:creator>
      <dc:date>2024-07-11T20:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc.</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1504654#M11861</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic76570.html" target="_self"&gt;ElementEvent&lt;/A&gt;. Event argument member Hint has some different states for changes:&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic76600.html" target="_self"&gt;ElementAdded ,&amp;nbsp;ElementRemoved,&amp;nbsp;PlacementChanged&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 07:37:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1504654#M11861</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-07-12T07:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc.</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1505141#M11866</link>
      <description>&lt;P&gt;Some samples...&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic76581.htmlhttps://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic76581.html" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic76581.htmlhttps://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic76581.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jul 2024 08:51:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1505141#M11866</guid>
      <dc:creator>Gurunara</dc:creator>
      <dc:date>2024-07-13T08:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc.</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1505191#M11869</link>
      <description>&lt;P&gt;There is some issue with using&amp;nbsp;ElementEvent.Subscribe(args =&amp;gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;if (args.Hint == ElementEventHint.PlacementChanged)&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;This event gets triggered hundreds of times on a single move of a graphic element (not during but at the end of the move).&lt;BR /&gt;Is this a bug... and any way to prevent this so only one event is handled at the end of a move..?&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jul 2024 17:13:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1505191#M11869</guid>
      <dc:creator>Gurunara</dc:creator>
      <dc:date>2024-07-14T17:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine when a GraphicElement in a GraphicLayer gets edited, resized, moved, etc.</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1506778#M11887</link>
      <description>&lt;P&gt;Looks like there are properties for various attributes that could change, and have to check to see if any one of them have changed, each of which is generating an ElementEventHint.PlacementChanged event...&lt;BR /&gt;&lt;BR /&gt;but they seem to be private properties, i.e.&amp;nbsp;for each element in&amp;nbsp;ElementEventArgs args.Elements, examine _placement... so may have to do it using reflection...&lt;BR /&gt;&lt;BR /&gt;for now just by placing a delay of 2 sec after handling for the first placment event before allowing next one to be handled... seem a good enough workaround...&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 18:00:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-determine-when-a-graphicelement-in-a/m-p/1506778#M11887</guid>
      <dc:creator>Gurunara</dc:creator>
      <dc:date>2024-07-18T18:00:06Z</dc:date>
    </item>
  </channel>
</rss>

