ShapeFile enumerator used to enumerate the raw data of each shape in a shapeFile. The ShapeFileEnumerator provides a fast, low memory, forward only means of iterating over all of the records in a shapefile.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class ShapeFileEnumerator _
	Implements IEnumerator(Of Collection(Of PointF())),  _
	IDisposable, IEnumerator
C#
public sealed class ShapeFileEnumerator : IEnumerator<Collection<PointF[]>>, 
	IDisposable, IEnumerator
Visual C++
public ref class ShapeFileEnumerator sealed : IEnumerator<Collection<array<PointF>^>^>, 
	IDisposable, IEnumerator

Inheritance Hierarchy

System..::.Object
  EGIS.ShapeFileLib..::.ShapeFileEnumerator

See Also