Geotools.Net

DbaseFileHeader.AddColumn Method 

Add a column to this DbaseFileHeader.

[Visual Basic]
Public Sub AddColumn( _
   ByVal fieldName As String, _
   ByVal fieldType As Char, _
   ByVal fieldLength As Integer, _
   ByVal decimalCount As Integer _
)
[C#]
public void AddColumn(
   string fieldName,
   char fieldType,
   int fieldLength,
   int decimalCount
);

Parameters

fieldName
The name of the field to add.
fieldType
The type is one of (C N L or D) character, number, logical(true/false), or date.
fieldLength
The Field length is the total length in bytes reserved for this column.
decimalCount
The decimal count only applies to numbers(N), and floating point values (F), and refers to the number of characters to reserve after the decimal point.

Remarks

Missing <remarks> documentation for M:Geotools.Data.DbaseFileHeader.AddColumn(System.String,System.Char,System.Int32,System.Int32)

See Also

DbaseFileHeader Class | DbaseFileHeader Members | Geotools.Data Namespace