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:
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));
}