public MaplexAnchorPointType PolygonAnchorPointType {get; set;}
Public Property PolygonAnchorPointType As MaplexAnchorPointType
public MaplexAnchorPointType PolygonAnchorPointType {get; set;}
Public Property PolygonAnchorPointType As MaplexAnchorPointType
//Note: call within QueuedTask.Run() //Get the layer's definition var lyrDefn = featureLayer.GetDefinition() as CIMFeatureLayer; //Get the label classes - we need the first one var listLabelClasses = lyrDefn.LabelClasses.ToList(); var theLabelClass = listLabelClasses.FirstOrDefault(); //If TextSymbol is a callout the leader line anachor point can be modified theLabelClass.MaplexLabelPlacementProperties.PolygonAnchorPointType = MaplexAnchorPointType.Perimeter; lyrDefn.LabelClasses = listLabelClasses.ToArray(); //Set the labelClasses back featureLayer.SetDefinition(lyrDefn); //set the layer's definition
Target Platforms: Windows 11, Windows 10, Windows 8.1