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


IEnvelope.MMax Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IE > IEnvelope Interface > IEnvelope.MMax Property
ArcGIS Developer Help

IEnvelope.MMax Property

The maximum measure value in the area of the envelope.

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

MMax 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

MMax is the maximum M value for the object owning the envelope.

[C#]

The following C# code shows how to read and write the MMax value:

IEnvelope env = new EnvelopeClass() as IEnvelope;

env.MMax = 2;

double mMax;

mMax = env.MMax;

See Also

IEnvelope Interface