ArcGIS Pro 3.1 API Reference Guide
ArcGIS.Core.Geometry Namespace / SpatialReference Class / IsGeographic Property
Example Version

    IsGeographic Property (SpatialReference)
    Gets if this is a geographic coordinate system.
    Syntax
    public bool IsGeographic {get;}
    Example
    Use WGS84 SpatialReference
    SpatialReference wgs84 = SpatialReferences.WGS84;
    bool isProjected = wgs84.IsProjected;     // false
    bool isGeographic = wgs84.IsGeographic;   // true
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.0 or higher.
    See Also