The map projection of a projected coordinate system.
[Visual Basic .NET] Public ReadOnly Property Projection As IProjection
[C#] public IProjection Projection {get;}
[C++]
HRESULT get_Projection(
IProjection** Projection
);
[C++]Parameters
Projection [out, retval]Projection is a parameter of type IProjection
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
[C#]
private void GetProjection(IProjectedCoordinateSystem projectedCoordinateSystem)
{
String name = projectedCoordinateSystem.Projection.Name;
System.Windows.Forms.MessageBox.Show(name);
}
{
String name = projectedCoordinateSystem.Projection.Name;
System.Windows.Forms.MessageBox.Show(name);
}