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


IProjectedCoordinateSystem.LongitudeOf2nd 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.LongitudeOf2nd Property
ArcGIS Developer Help

IProjectedCoordinateSystem.LongitudeOf2nd Property

The longitude of the second point (Lambda 2) of a projected coordinate system.

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

LongitudeOf2nd is a parameter of type double* LongitudeOf2nd
LongitudeOf2nd is a parameter of type double

Product Availability

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

See Also

IProjectedCoordinateSystem Interface