Gets the raw shape data in double precision format at given record index.

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

Syntax

Visual Basic
Public Function GetShapeDataD ( _
	recordIndex As Integer _
) As ReadOnlyCollection(Of PointD())
C#
public ReadOnlyCollection<PointD[]> GetShapeDataD(
	int recordIndex
)
Visual C++
public:
ReadOnlyCollection<array<PointD>^>^ GetShapeDataD(
	int recordIndex
)
JavaScript
function getShapeDataD(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