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
columnNamestringThis parameter represents the name of the column in the DBF.
columnTypeDbfColumnTypeThis parameter represents the type of the column in the DBF.
lengthintThis parameter represents the length of the column in the DBF.
decimalLengthintThis parameter represents the number of decimal places the column has, if it is a numeric type.
buildIndexbooluniqueIndexColumnValuesbool
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; }