ArcObjects Library Reference  (Geometry)    

IEnvelope.MMin Property

The minimum measure value in the area of the envelope.

[Visual Basic 6.0]
Property MMin As Double
[Visual Basic .NET]
Public Property MMin As Double
[C#]
public double MMin {get; set;}
[Java]
public Double getMMin()
throws
    IOException,
    AutomationException
[Java]
public void setMMin(
Double MMin
)
throws
    IOException,
    AutomationException
[C++]
HRESULT get_MMin(
  double* MMin
);
[C++]
HRESULT put_MMin(
  double MMin

);

[C++]

Parameters

MMin [out, retval]

  MMin is a parameter of type double

MMin

  MMin is a parameter of type double

Product Availability

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

Description

MMin is the minimum M value for the object owning the envelope.




 
[C#]

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

IEnvelope env = new EnvelopeClass() as IEnvelope;

env.MMin = 2;

double mMin;

mMin = env.MMin;

[Visual Basic 6.0]

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

dim dMmin as double
dim pEnv as IEnvelope
set pEnv = new Envelope
pEnv.MMin = 100.0
dMmin = pEnv.MMin

See Also

IEnvelope Interface

 


Feedback Send feedback on this page