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


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

IEnumVertex.Skip Method

Skips forward or backward over a specified number of vertices.

[Visual Basic .NET]
Public Sub Skip ( _
    ByVal numVertices As Integer _
)
[C#]
public void Skip (
    int numVertices
);
[C++]
HRESULT Skip(
  long numVertices
);
[C++]
Parameters
numVertices 

numVertices is a parameter of type long

Product Availability

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

Description

The Skip method allows jumping over a given number of positions in the enumerator. The Skip method can be used to go forward (positive value) or backward (negative value).

See Also

IEnumVertex Interface