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

New Post: Shape layer Point Type probem - always dimond

$
0
0
Hi Ross, I checked Map.set_ShapeLayerPointType property in the source it generates ErrorMessage(tkPROPERTY_NOT_IMPLEMENTED) , so it's effectively deprecated. You should use:
var sf = map.get_Shapefile(layerHandle);
if (sf != null)
{
   var opt = sf.DefaultDrawingOptions;
   opt.PointShape = ...;
   opt.PointType=...;
   // etc. see more in the documentation of ShapeDrawingOptions class 
}
http://www.mapwindow.org/documentation/mapwingis4.9/class_shape_drawing_options.html#details
It's recommended to use such approach in favor of older properties of map class, since they were left for backward compatibility only, while ShapeDrawingOptions class does the real work.

Regards,
Sergei

Viewing all articles
Browse latest Browse all 2341

Trending Articles