ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.Mapping Namespace / AnnotationFeature Class / GetGraphicOutline Method
Example

In This Topic
    GetGraphicOutline Method (AnnotationFeature)
    In This Topic
    Gets the graphic outline.
    Syntax
    Public Function GetGraphicOutline() As Geometry
    public Geometry GetGraphicOutline()
    Example
    Get the Outline Geometry for an Annotation
    {
    
      // Note: QueuedTask is required to access the AnnotationFeature
      {
        //get the first annotation feature...
        //...assuming at least one feature gets selected
        using var fc = annotationLayer.GetFeatureClass();
        using var rc = fc.Search();
        rc.MoveNext();
        using var af = rc.Current as AnnotationFeature;
        var outline_geom = af.GetGraphicOutline();
        //TODO - use the outline...
    
        //Note: 
        //var graphic = annoFeature.GetGraphic(); 
        //gets the CIMTextGraphic...
      }
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also