ArcObjects Library Reference (Geometry)  

IMSegmentation4.CalibrateByDistance3D Method

Calibrates Ms of existing vertices using new Ms from the input points and the shortest 3D path distances along the polyline between those points. The update method is given as a combination of esriGeometryUpdateMEnum values.

[Visual Basic .NET]
Public Function CalibrateByDistance3D ( _
    ByVal Points As IEnumVertex, _
    ByVal updateHow As Integer, _
    ByVal ignoreGaps As Boolean, _
    ByVal cutoffDistance As Double _
) As IEnumSplitPoint
[C#]
public IEnumSplitPoint CalibrateByDistance3D (
    IEnumVertex Points,
    int updateHow,
    bool ignoreGaps,
    double cutoffDistance
);
[C++]
HRESULT CalibrateByDistance3D(
  IEnumVertex* Points,
  long updateHow,
  VARIANT_BOOL ignoreGaps,
  double cutoffDistance,
  IEnumSplitPoint** splitPoints
);
[C++]

Parameters

Points

  Points is a parameter of type IEnumVertex

updateHow   updateHow is a parameter of type long ignoreGaps   ignoreGaps is a parameter of type VARIANT_BOOL cutoffDistance   cutoffDistance is a parameter of type double splitPoints [out, retval]

  splitPoints is a parameter of type IEnumSplitPoint

Product Availability

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

See Also

IMSegmentation4 Interface