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:
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
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#detailsIt'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