a DBF File Writer class

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

Syntax

Visual Basic
Public NotInheritable Class DbfWriter _
	Implements IDisposable
C#
public sealed class DbfWriter : IDisposable
Visual C++
public ref class DbfWriter sealed : IDisposable
JavaScript
EGIS.ShapeFileLib.DbfWriter = function();

Type.createClass(
	'EGIS.ShapeFileLib.DbfWriter',
	null,
	IDisposable);

Remarks

The DbfWriter class can be used to create or edit a DBF file

The class is used by the ShapeFileWriter class to create new shapefiles. The class can also be used in conjunction with a DbfReader to edit a DBF file by filtering required records or adding/removing new columns

Inheritance Hierarchy

System..::..Object
  EGIS.ShapeFileLib..::..DbfWriter

See Also