Class TabDbfColumn
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
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.
buildIndex
booluniqueIndexColumnValues
bool
Remarks
None
Properties
BuildIndex
This property returns the index of the column in the DBF.
public bool BuildIndex { get; set; }
Property Value
UniqueIndexColumnValues
This property returns the value of the column in the DBF is unique or not.
public bool UniqueIndexColumnValues { get; set; }