Table of Contents

Class TabDbfColumn

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll
public class TabDbfColumn : DbfColumn
Inheritance
TabDbfColumn
Inherited Members

Constructors

TabDbfColumn()

This method is the constructor for the DbfColumn.

public TabDbfColumn()

Remarks

None

TabDbfColumn(string, DbfColumnType, int, int, bool, bool)

This method is the constructor for the DbfColumn.

public TabDbfColumn(string columnName, DbfColumnType columnType, int length, int decimalLength, bool buildIndex, bool uniqueIndexColumnValues)

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.

buildIndex bool
uniqueIndexColumnValues bool

Remarks

None

Properties

BuildIndex

This property returns the index of the column in the DBF.

public bool BuildIndex { get; set; }

Property Value

bool

UniqueIndexColumnValues

This property returns the value of the column in the DBF is unique or not.

public bool UniqueIndexColumnValues { get; set; }

Property Value

bool