ShapeFileWriter Constructor
Namespace:
EGIS.ShapeFileLib
Assembly:
EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
Syntax
Visual Basic |
---|
Protected Sub New ( _
baseDir As String, _
shapeFileName As String, _
dataFields As DbfFieldDesc(), _
append As Boolean _
) |
C# |
---|
protected ShapeFileWriter(
string baseDir,
string shapeFileName,
DbfFieldDesc[] dataFields,
bool append
) |
Visual C++ |
---|
protected:
ShapeFileWriter(
String^ baseDir,
String^ shapeFileName,
array<DbfFieldDesc>^ dataFields,
bool append
) |
JavaScript |
---|
EGIS.ShapeFileLib.ShapeFileWriter = function(baseDir, shapeFileName, dataFields, append); |
Parameters
- baseDir
- Type: System..::..String
The base directory where the 3 shapefile files will be created
- shapeFileName
- Type: System..::..String
The name of the shapefile. The shapefile will be generated at baseDir + shapeFileName + ".shx|.shp|.dbf|.cpg
- dataFields
- Type: array<EGIS.ShapeFileLib..::..DbfFieldDesc>[]()[][]
DbfFieldDesc array describing the dbf fields of the shapefile
- append
- Type: System..::..Boolean
Remarks
See Also