[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( stringfieldName, charfieldType, intfieldLength, intdecimalCount );
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)