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


ISegmentM.GetMs Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IS > ISegmentM Interface > ISegmentM.GetMs Method
ArcGIS Developer Help

ISegmentM.GetMs Method

Get the Ms on the segment's endpoints.

[Visual Basic .NET]
Public Sub GetMs ( _
    ByRef fromM As Double, _
    ByRef toM As Double _
)
[C#]
public void GetMs (
    ref double fromM,
    ref double toM
);
[C++]
HRESULT GetMs(
  System.Double* fromM,
  System.Double* toM
);
[C++]
Parameters
fromM [out]

fromM is a parameter of type double* toM [out]
toM is a parameter of type double*

Product Availability

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

Description

Returns the M attributes held by the From and To point of the segment.

See Also

ISegmentM Interface