Quantcast
Channel: MapWinGIS ActiveX Map and GIS Component
Viewing all articles
Browse latest Browse all 2341

New Post: Unable to select a shape from shapefile of shpType.POLYGONZ using the Shapefile.SelectShapes method

$
0
0
Hi Juky,

I finally have some time to look at your question.
I've received your 3D shapefile and managed to select some shapes.
I think your problem is that you don't use a rectangle as selection extent but a point.
This is my sample code. It is in C# but you'll get the idea:
     object result = null;
      testExtents.SetBounds(820348, 9828858, Double.MinValue, 822304, 9829571, Double.MaxValue);
      if (sfPolygonZ.SelectShapes(testExtents, 0.0, SelectMode.INTERSECTION, ref result))
      {
        int[] shapes = result as int[];
        for (int i = 0; i < shapes.Length; i++)
        {
          sfPolygonZ.set_ShapeSelected(shapes[i], true);
        }

        mapWin.View.Redraw();
      }
      else
      {
        testsMethods.ReportMessage("Error!No shapes selected: " + sfPolygonZ.get_ErrorMsg(sfPolygonZ.LastErrorCode));
      }      

Viewing all articles
Browse latest Browse all 2341

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>