<?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: Showing Selection Rectangle in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1287202#M9791</link>
    <description>&lt;P&gt;Just to clarify: This behavior requires the following options setting in ArcGIS Pro:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Wolf_0-1683635986434.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/70218iE399B6B4621B3A0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Wolf_0-1683635986434.png" alt="Wolf_0-1683635986434.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I was not able to get this to work either, i passed the question on to team.&amp;nbsp; &amp;nbsp;I will let you know what we find.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2023 12:42:04 GMT</pubDate>
    <dc:creator>Wolf</dc:creator>
    <dc:date>2023-05-09T12:42:04Z</dc:date>
    <item>
      <title>Showing Selection Rectangle</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1286155#M9780</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm currently running ArcGIS Pro 3.0.2.&lt;/P&gt;&lt;P&gt;When I use the rectangle "Select" tool in the Maps tab, a rectangle is continuously displayed and when the pointer is in the area, there are resize boxes available:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RussellSuter_0-1683299189607.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/69956i74FE6C3037A461BD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RussellSuter_0-1683299189607.png" alt="RussellSuter_0-1683299189607.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How do I get this box in my custom tool?&amp;nbsp; My code is:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;   internal class SelectByRectangleMapTool : MapTool
   {
      public SelectByRectangleMapTool()
      {
         IsSketchTool = true;
         CompleteSketchOnMouseUp = true;
         SketchType = SketchGeometryType.Rectangle;
         SketchOutputMode = SketchOutputMode.Map;
      }

      protected override Task OnToolActivateAsync(bool active)
      {
         return base.OnToolActivateAsync(active);
      }

      protected override Task&amp;lt;bool&amp;gt; OnSketchCompleteAsync(Geometry geometry)
      {
         return QueuedTask.Run(() =&amp;gt;
         {
            ActiveMapView.SelectFeatures(geometry);

            return true;
         });
      }
   }&lt;/LI-CODE&gt;&lt;P&gt;I've tried a few resources like IsWYSIWG with no joy.&amp;nbsp; Any help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 15:10:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1286155#M9780</guid>
      <dc:creator>RussellSuter</dc:creator>
      <dc:date>2023-05-05T15:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Selection Rectangle</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1287202#M9791</link>
      <description>&lt;P&gt;Just to clarify: This behavior requires the following options setting in ArcGIS Pro:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Wolf_0-1683635986434.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/70218iE399B6B4621B3A0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Wolf_0-1683635986434.png" alt="Wolf_0-1683635986434.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I was not able to get this to work either, i passed the question on to team.&amp;nbsp; &amp;nbsp;I will let you know what we find.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 12:42:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1287202#M9791</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2023-05-09T12:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Selection Rectangle</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1292839#M9853</link>
      <description>&lt;P&gt;Hi Wolf,&lt;/P&gt;&lt;P&gt;Anymore info on this question?&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 21:39:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1292839#M9853</guid>
      <dc:creator>RussellSuter</dc:creator>
      <dc:date>2023-05-24T21:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Selection Rectangle</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1300262#M9944</link>
      <description>&lt;P&gt;Is this possibly an implementation of an OverlayControl?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 15:47:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/showing-selection-rectangle/m-p/1300262#M9944</guid>
      <dc:creator>RussellSuter</dc:creator>
      <dc:date>2023-06-16T15:47:31Z</dc:date>
    </item>
  </channel>
</rss>

