ITableCreator.AddConverter

Syntax

AddConverter(FieldName: String; Converter: IValueConverter);

Parameters

FieldName. Identifier of the field, which values must be transformed.

Converter. Value transformer in use.

Description

The AddConverter method transforms values of the specified field.

Comments

A value transformer is created by the user as a custom class that inherits from the IValueConverter interface. The example of transformation implementation is given in description of the IValueConverter.Convert property.

Example

The property use is given in the example for ITableCreator.Execute.

See also:

ITableCreator