<?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 Manually using the Editor class in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693638#M17814</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would like to build my own control for enabling and stoping editing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;using the Editing.EditVertice.Execute I managed to start the edit process and also managed to sent it the garphic item to edit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I want to implement the stop edit, but it seems there's no manual way to stop editing, because the editing object does not expose any StopEdit method, nor does the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I manually stop editing?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Oct 2010 16:49:24 GMT</pubDate>
    <dc:creator>IdoFlatow</dc:creator>
    <dc:date>2010-10-27T16:49:24Z</dc:date>
    <item>
      <title>Manually using the Editor class</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693638#M17814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would like to build my own control for enabling and stoping editing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;using the Editing.EditVertice.Execute I managed to start the edit process and also managed to sent it the garphic item to edit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I want to implement the stop edit, but it seems there's no manual way to stop editing, because the editing object does not expose any StopEdit method, nor does the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I manually stop editing?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 16:49:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693638#M17814</guid>
      <dc:creator>IdoFlatow</dc:creator>
      <dc:date>2010-10-27T16:49:24Z</dc:date>
    </item>
    <item>
      <title>Possible solution?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693639#M17815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I managed to call the editor's ClearActiveAction method in reflection (it's a private method) and it seems to stop the editing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this the correct technique? will this method become public at some point so we can manually decide when to start and when to end the edit? (for cases when the developer is required to allow editing using non-standard ways, such as "press F2 for edit and F4 to stop editing"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 17:13:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693639#M17815</guid>
      <dc:creator>IdoFlatow</dc:creator>
      <dc:date>2010-10-27T17:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Manually using the Editor class</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693640#M17816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Please look at this sample:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CancelActive is the command you use to cancel the current active command.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Clicking the "Clear Action" button with Command Binding to Editor's CancelActive is equivalent to this in code-behind:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if(editor.CancelActive.CanExecute(null))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; editor.CancelActive.Execute(null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;where editor is your Editor instance, null is the CommandParameter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 17:56:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693640#M17816</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-10-27T17:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: Manually using the Editor class</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693641#M17817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Please look at this sample:&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;CancelActive is the command you use to cancel the current active command.&lt;BR /&gt;&lt;BR /&gt;Clicking the "Clear Action" button with Command Binding to Editor's CancelActive is equivalent to this in code-behind:&lt;BR /&gt;&lt;BR /&gt;if(editor.CancelActive.CanExecute(null))&lt;BR /&gt;&amp;nbsp; editor.CancelActive.Execute(null);&lt;BR /&gt;&lt;BR /&gt;where editor is your Editor instance, null is the CommandParameter.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Missed that one, thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 18:39:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/manually-using-the-editor-class/m-p/693641#M17817</guid>
      <dc:creator>IdoFlatow</dc:creator>
      <dc:date>2010-10-27T18:39:26Z</dc:date>
    </item>
  </channel>
</rss>

