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


IProjectedCoordinateSystem.StandardParallel2 Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IP > IProjectedCoordinateSystem Interface > IProjectedCoordinateSystem.StandardParallel2 Property
ArcGIS Developer Help

IProjectedCoordinateSystem.StandardParallel2 Property

The second parallel (Phi 2) of a projected coordinate system.

[Visual Basic .NET]
Public Property StandardParallel2 As Double
[C#]
public double StandardParallel2 {get; set;}
[C++]
HRESULT get_StandardParallel2(
  System.Double* StandardParallel2
);
[C++]
HRESULT put_StandardParallel2(
  double StandardParallel2
);
[C++]
Parameters
StandardParallel2 [out, retval]

StandardParallel2 is a parameter of type double* StandardParallel2
StandardParallel2 is a parameter of type double

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
[C#]     private void ManipulateStandardParallel2(IProjectedCoordinateSystem projectedCoordinateSystem)
    {
        double standardParallel2 = projectedCoordinateSystem.StandardParallel2;
        System.Windows.Forms.MessageBox.Show(standardParallel2.ToString());
        projectedCoordinateSystem.StandardParallel2 = 0;
    }

See Also

IProjectedCoordinateSystem Interface