abstract method used to add a new record to the shapefile
Namespace:
EGIS.ShapeFileLibAssembly: EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public MustOverride Sub AddRecord ( _ parts As Collection(Of PointF()), _ fieldData As String() _ ) |
| C# |
|---|
public abstract void AddRecord( Collection<PointF[]> parts, string[] fieldData ) |
| Visual C++ |
|---|
public: virtual void AddRecord( Collection<array<PointF>^>^ parts, array<String^>^ fieldData ) abstract |
Parameters
- parts
- Type: System.Collections.ObjectModel..::.Collection<(Of <(array<
PointF
>[]()[]>)>)
collection of float arrays containing the individual points of each part in the shape record.
- fieldData
- Type: array<
System..::.String
>[]()[]
fieldData string values of the data associated with the shape record (which is stored in the dbf file)
Remarks
Implementing subclasses override this method to write the appropriate data
depending on the ShapeType being used.