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

In This Topic
    ToSRWkid Property
    In This Topic
    Gets the well-known ID of the spatial reference to which the data will be projected.
    Syntax
    Public ReadOnly Property ToSRWkid As Integer
    public int ToSRWkid {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