IncompatibleDataColumnTypeHandling Enumeration |
Defines how a type is handled if not valid for a DataColumn of a DataTable.
Namespace:
TB.ComponentModel
Assembly:
UniversalTypeConverter (in UniversalTypeConverter.dll) Version: 2.0.0
Syntax public enum IncompatibleDataColumnTypeHandling
Members
| Member name | Value | Description |
---|
| ToString | 0 |
The type is handled as String.
Values are converted to string using the given TypeConverter. If conversion was not successful, ToString() is used at last.
|
| AsString | 1 |
The type is handled as String.
Values are converted to string using the given TypeConverter. If conversion was not successful, DBNull is used at last.
|
| Ignore | 2 |
The type is ignored.
|
See Also