This document is archived and information here might be outdated.  Recommended version.


IGeographicCoordinateSystem.Usage Property (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (Geometry)  

IGeographicCoordinateSystem.Usage Property

The usage notes of this geographic coordinate system.

[Visual Basic .NET]
Public ReadOnly Property Usage As String
[C#]
public string Usage {get;}
[C++]
HRESULT get_Usage(
  BSTR* Usage
);
[C++]

Parameters Usage [out, retval] Usage is a parameter of type BSTR

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

    private void GetUsage(IGeographicCoordinateSystem geographicCoordinateSystem)
    {
        String usage=geographicCoordinateSystem.Usage;
        System.Windows.Forms.MessageBox.Show(usage);
    }

See Also

IGeographicCoordinateSystem Interface