Gets the raw shape data at given record index.

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

Syntax

Visual Basic (Declaration)
Public Function GetShapeData ( _
	recordIndex As Integer _
) As Collection(Of PointF())
C#
public Collection<PointF[]> GetShapeData(
	int recordIndex
)
Visual C++
public:
Collection<array<PointF>^>^ GetShapeData(
	int recordIndex
)

Parameters

recordIndex
Type: System..::.Int32
The zero based index of the shape data to return

Return Value

Remarks

If you are reading every record in a large shape file then the preferred method is to call GetShapeFileEnumerator

See Also