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


ISpatialReference2.IsXYPrecisionEqual Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IS > ISpatialReference2 Interface > ISpatialReference2.IsXYPrecisionEqual Method
ArcGIS Developer Help

ISpatialReference2.IsXYPrecisionEqual Method

Returns true if the XY precisions of the two spatial references are the same.

[Visual Basic .NET]
Public Function IsXYPrecisionEqual ( _
    ByVal otherSR As ISpatialReference _
) As Boolean
[C#]
public bool IsXYPrecisionEqual (
    ISpatialReference otherSR
);
[C++]
HRESULT IsXYPrecisionEqual(
  ISpatialReference* otherSR
);
[C++]
Parameters
otherSR [in]

otherSR is a parameter of type ISpatialReference*

Product Availability

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

Description

Compares the X and Y precision (resolution) values. Both spatial references must be of the same type (both GCS, both PCS, etc).

Remarks

The IClone::IsEqual method for PCSs and GCSs compares only the projection information (projection, spheroid, projected units, etc.). It does not compare any properties related to the coordinate grid definition for the spatial references.

 

Use the ISpatialReference2.IsXY/Z/MPrecisionEqual methods to compare coordinate grid information.


Use the ISpatialReferenceTolerance.IsXY/Z/MToleranceEqual methods to compare the various cluster tolerances for the spatial references.

See Also

ISpatialReference2 Interface