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

In This Topic
    IsProjected Property (SpatialReference)
    In This Topic
    Gets if this is a projected coordinate system.
    Syntax
    Public ReadOnly Property IsProjected As Boolean
    public bool IsProjected {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