Click or drag to resize

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
C#
public enum IncompatibleDataColumnTypeHandling
Members
  Member nameValueDescription
ToString0 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.
AsString1 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.
Ignore2 The type is ignored.
See Also