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


ISpatialReferenceResolution.MResolution Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IS > ISpatialReferenceResolution Interface > ISpatialReferenceResolution.MResolution Property
ArcGIS Developer Help

ISpatialReferenceResolution.MResolution Property

The M, or measure, resolution of this spatial reference.

[Visual Basic .NET]
Public Property MResolution As Double
[C#]
public double MResolution {get; set;}
[C++]
HRESULT get_MResolution(
  double interval
);
[C++]
HRESULT put_MResolution(
  System.Double* interval
);
[C++]
Parameters
interval 

interval is a parameter of type double interval [out, retval]
interval is a parameter of type double*

Product Availability

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

Remarks

MResolution resizes the existing grid about its center to accommodate the new resolution specified.  This property provides finer control for specifying the resolution than does ISpatialReferenceResolution::SetDefaultMResolution. The default MResolution is defined as 0.001 units for high and low precision spatial references.

The default value for MResolution is NaN for a new spatial reference.  If the MResolution is not well-defined (MResolution is NaN), calls to ISpatialReference::SetMDomain or ISpatialReference::SetMFalseOriginAndUnits will set the MResolution to the minimum allowable value (2.0/mUnits).  If the MResolution was already defined, these methods will not alter the MResolution.

 

See Also

ISpatialReferenceResolution Interface