ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Geometry Namespace / GeographicTransformationListEntry Class / Name Property
Example

In This Topic
    Name Property (GeographicTransformationListEntry)
    In This Topic
    Gets the name of the geographic transformation.
    Syntax
    Public ReadOnly Property Name As String
    public string Name {get;}
    Example
    Retrieve system geographic transformations
    {
      // a geographic transformation is the definition of how to project from one spatial reference to another
      IReadOnlyList<GeographicTransformationListEntry> list = GeometryEngine.Instance.GetPredefinedGeographicTransformationList();
    
      // a GeographicTransformationListEntry consists of Name, Wkid, the From SpatialReference Wkid, the To SpatialReference Wkid
      GeographicTransformationListEntry entry = list[0];
    
      int fromWkid = entry.FromSRWkid;
      int toWkid = entry.ToSRWkid;
      int wkid = entry.Wkid;
      string name = entry.Name;
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also