ArcObjects Library Reference  (Geometry)    

IEnvelope.MMax Property

The maximum measure value in the area of the envelope.

[Visual Basic 6.0]
Property MMax As Double
[Visual Basic .NET]
Public Property MMax As Double
[C#]
public double MMax {get; set;}
[Java]
public Double getMMax()
throws
    IOException,
    AutomationException
[Java]
public void setMMax(
Double MMax
)
throws
    IOException,
    AutomationException
[C++]
HRESULT get_MMax(
  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;

[Visual Basic 6.0]

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

dim dMmax as double
dim pEnv as IEnvelope
set pEnv = new Envelope
pEnv.MMax = 100.0
dMmax = pEnv.MMax

 

See Also

IEnvelope Interface

 


Feedback Send feedback on this page