Table of Contents

Class DbfColumn

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

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 string

This parameter represents the name of the column in the DBF.

columnType DbfColumnType

This parameter represents the type of the column in the DBF.

length int

This parameter represents the length of the column in the DBF.

decimalLength int

This 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

DbfColumnType

Remarks

None

DecimalLength

This property returns the decimal length of the column in the DBF.

public int DecimalLength { get; set; }

Property Value

int

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

int

Remarks

None