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


IEnvelope.OffsetM Method (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.OffsetM Method
ArcGIS Developer Help

IEnvelope.OffsetM Method

Moves the sides m units.

[Visual Basic .NET]
Public Sub OffsetM ( _
    ByVal M As Double _
)
[C#]
public void OffsetM (
    double M
);
[C++]
HRESULT OffsetM(
  double M
);
[C++]
Parameters
M 

M is a parameter of type double

Product Availability

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

Description

OffsetM shifts the M values for the Envelope.  None of the other properties are changed.

Remarks

new MMin = old MMin + M
new MMax = old MMax + M

See Also

IEnvelope Interface