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


IEnumSplitPoint.NextInSequence Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IE > IEnumSplitPoint Interface > IEnumSplitPoint.NextInSequence Method
ArcGIS Developer Help

IEnumSplitPoint.NextInSequence Method

Returns the next split point along with its location in the geometry.

[Visual Basic .NET]
Public Sub NextInSequence ( _
    ByRef splitPoint As IPoint, _
    ByRef part As Integer, _
    ByRef vertex As Integer _
)
[C#]
public void NextInSequence (
    ref IPoint splitPoint,
    ref int part,
    ref int vertex
);
[C++]
HRESULT NextInSequence(
  IPoint** splitPoint,
  System.Int32* part,
  System.Int32* vertex
);
[C++]
Parameters
splitPoint [out]

splitPoint is a parameter of type IPoint** part [in, out]
part is a parameter of type long* vertex [in, out]
vertex is a parameter of type long*

Product Availability

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

Description

The NextInSequence method returns an IPoint object along with its part index and its vertex index. The points returned by that method are the input splitPoints if the IEnumSplitPoint was created using the IPolycurve2::SplitAtPoints method or they are points located on the split curve if the IPolycurve2::SplitAtDistances method was used. 

See Also

IEnumSplitPoint Interface