<?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: Get EditOperation from undo stack? in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792971#M1663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;Its possible. We looked at it during development and placed it on hold after a few issues came up. For example, if you combine an edit operation with a mapping one, what happens when you discard or save edits? Currently we remove all the editing operations from the stacks.&lt;/P&gt;&lt;P&gt;What sorts of operations are you looking to combine?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Sep 2016 16:51:08 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2016-09-06T16:51:08Z</dc:date>
    <item>
      <title>Get EditOperation from undo stack?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792968#M1660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The general behavior of the Add-In which I develop is to edit a Row with ArcGIS Pro, and after Pro finished its operations, the Add-In performs some more. I &lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/index.html#topic9507.html"&gt;chain &lt;/A&gt;the Add-In EditOperations, which works great. But as a result, there are of course two operations in the undo stack. One from Pro itself, and one from the Add-In.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I’m wondering whether it is possible to get the original EditOperation from Pro (obtained for instance by its unique GUID, which is provided by&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/index.html#topic9816.html"&gt;RowChangedEventArgs&lt;/A&gt;) and chain the Add-In operations to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I’ve already found the FindRedoOperations/FindUndoOperations methods exposed by &lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/index.html#topic10190.html"&gt;OperationManager&lt;/A&gt;, but I’m not sure whether this could be the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 14:07:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792968#M1660</guid>
      <dc:creator>MichaelMevißen1</dc:creator>
      <dc:date>2016-09-02T14:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get EditOperation from undo stack?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792969#M1661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;Its currently not possible to combine an edit operation with existing operations on the stack, nor is it possible to combine an edit operation with your own operations through the &lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/index.html#topic10199.html"&gt;CreateCompositeOperation &lt;/A&gt;method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 21:45:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792969#M1661</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-09-02T21:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Get EditOperation from undo stack?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792970#M1662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Do you know whether it will be possible to combine edit operations with existing operations on the stack in future SDK&amp;nbsp;versions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 08:22:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792970#M1662</guid>
      <dc:creator>MichaelMevißen1</dc:creator>
      <dc:date>2016-09-05T08:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get EditOperation from undo stack?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792971#M1663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;Its possible. We looked at it during development and placed it on hold after a few issues came up. For example, if you combine an edit operation with a mapping one, what happens when you discard or save edits? Currently we remove all the editing operations from the stacks.&lt;/P&gt;&lt;P&gt;What sorts of operations are you looking to combine?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 16:51:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792971#M1663</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-09-06T16:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Get EditOperation from undo stack?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792972#M1664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;I’m looking to combine an edit operation (which is already combined with multiple edit operations – exclusively edit operations) from my add-in, and the latest operation from pro, which should be an edit operation too, since the add-in reacts immediately on RowChanged-, RowCreated-, and RowDeletedEvents respectively on the EditCompletedEvent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2016 09:12:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-editoperation-from-undo-stack/m-p/792972#M1664</guid>
      <dc:creator>MichaelMevißen1</dc:creator>
      <dc:date>2016-09-12T09:12:40Z</dc:date>
    </item>
  </channel>
</rss>

