ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / IElement Interface / SetAnchor Method
Anchor
Example

In This Topic
    SetAnchor Method (IElement)
    In This Topic
    Sets the anchor position of the element. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    void SetAnchor( 
       Anchor anchor
    )
    Sub SetAnchor( _
       ByVal anchor As Anchor _
    ) 

    Parameters

    anchor
    Anchor
    Exceptions
    ExceptionDescription
    This method must be called within the lambda passed to QueuedTask.Run.
    This element requires its mapview to be active
    Remarks
    Placement for an element contained in graphics layer requires the mapview be active.
    Example
    Element_GetSetAnchor
    //Change the element's anchor position
    
    //Perform on the worker thread
    await QueuedTask.Run(() =>
    {
      Anchor elmAnchor = element.GetAnchor();
      elmAnchor = Anchor.CenterPoint;
    
      element.SetAnchor(elmAnchor); //You don't have to get to set; a shortcut would be: element.SetAnchor(Anchor.CenterPoint);
    });
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also