ArcObjects Library Reference (Geometry)  

ISpatialReference2.IsMPrecisionEqual Method

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

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

Parameters

otherSR [in]

  otherSR is a parameter of type ISpatialReference

IsMPrecisionEqual [out, retval]   IsMPrecisionEqual is a parameter of type VARIANT_BOOL

Product Availability

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

Description

Compares the measure precisions (resolutions) . Both spatial references must be of the same type (both PCS, both GCS, 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