Gets the raw shape data at given record index, using a supplied dataBuffer to read the data.         
            
    Namespace: 
   EGIS.ShapeFileLib
    Assembly:
   EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
 Syntax
Syntax
| Visual Basic | 
|---|
| Public Function GetShapeData ( _
	recordIndex As Integer, _
	dataBuffer As Byte() _
) As ReadOnlyCollection(Of PointF()) | 
| C# | 
|---|
| public ReadOnlyCollection<PointF[]> GetShapeData(
	int recordIndex,
	byte[] dataBuffer
) | 
| Visual C++ | 
|---|
| public:
ReadOnlyCollection<array<PointF>^>^ GetShapeData(
	int recordIndex, 
	array<unsigned char>^ dataBuffer
) | 
| JavaScript | 
|---|
| function getShapeData(recordIndex, dataBuffer); | 
Parameters
- recordIndex
- Type: System..::..Int32
 The zero based index of the shape data to return
- dataBuffer
- Type: array<System..::..Byte>[]()[][]
 A supplied data buffer to use when reading the raw shape data from the shapefile. The buffer must be large enough to read the raw
            shape data.
Return Value
Remarks
 See Also
See Also