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


IEnvelope2.PutMCoords Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IE > IEnvelope2 Interface > IEnvelope2.PutMCoords Method
ArcGIS Developer Help

IEnvelope2.PutMCoords Method

Sets the minimum and maximum M values simultaneously.

[Visual Basic .NET]
Public Sub PutMCoords ( _
    ByVal MMin As Double, _
    ByVal MMax As Double _
)
[C#]
public void PutMCoords (
    double MMin,
    double MMax
);
[C++]
HRESULT PutMCoords(
  double MMin,
  double MMax
);
[C++]
Parameters
MMin 

MMin is a parameter of type double MMax
MMax is a parameter of type double

Product Availability

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

Description

Sets the MMin and MMax simultaneously.  This avoids complications of setting MMin and MMax individually in which they could become inconsistent.

See Also

IEnvelope2 Interface