Hi,
I am changing the placement of label of the feature layer at run-time. I am able to change the placement of features of the Point layer by setting the PointPlacement property of the feature layer to one of the value from the PointPlacement enum. But when I try to change the Placement of the Polygon and Line layer through same method, the new placement is not getting reflected on the map control. I am assuming that methodology to change the placement of Polygon and Line features is different as compared to point feature as PointPlacement must work on the centroid part of the geometry only. Is there any other way to set the placement at run-time for Polygon and Line features. if you can provide the sample code that will be very helpful. Below is my code changing the placement.
_featureLayer.ZoomLevelSet.ZoomLevel01.DefaultTextStyle.BestPlacement =
true;
_featureLayer.ZoomLevelSet.ZoomLevel01.DefaultTextStyle.PointPlacement = ;
Thanks,