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

In This Topic
    IsGeographic Property (SpatialReference)
    In This Topic
    Gets if this is a geographic coordinate system.
    Syntax
    Public ReadOnly Property IsGeographic As Boolean
    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 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also