Class DbfColumn
This class represents the column information specific to a DBF column.
public class DbfColumn : FeatureSourceColumn
- Inheritance
-
DbfColumn
- Derived
- Inherited Members
Constructors
DbfColumn()
This method is the constructor for the DbfColumn.
protected DbfColumn()
Remarks
None
DbfColumn(string, DbfColumnType, int, int)
This method is the constructor for the DbfColumn.
public DbfColumn(string columnName, DbfColumnType columnType, int length, int decimalLength)
Parameters
columnName
stringThis parameter represents the name of the column in the DBF.
columnType
DbfColumnTypeThis parameter represents the type of the column in the DBF.
length
intThis parameter represents the length of the column in the DBF.
decimalLength
intThis parameter represents the number of decimal places the column has, if it is a numeric type.
Remarks
None
Properties
ColumnType
This property returns the type of the column in the DBF.
public DbfColumnType ColumnType { get; set; }
Property Value
Remarks
None
DecimalLength
This property returns the decimal length of the column in the DBF.
public int DecimalLength { get; set; }
Property Value
Remarks
This is the number of decimal places the number represents. This is only applicable if the column type is numeric.
Length
This property returns the length of the column in the DBF.
public int Length { get; set; }
Property Value
Remarks
None