Create the automapping between the variable data in template and the data source. The field name is used for the mapping.

Namespace:  InfigoSDK
Assembly:  InfigoSDK (in InfigoSDK.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static InfigoFieldMapping CreateAutoMapping(
	InfigoTemplate template,
	IInfigoDataSource ds,
	double fThreshold
)
Visual Basic (Declaration)
Public Shared Function CreateAutoMapping ( _
	template As InfigoTemplate, _
	ds As IInfigoDataSource, _
	fThreshold As Double _
) As InfigoFieldMapping
Visual C++
public:
static InfigoFieldMapping^ CreateAutoMapping(
	InfigoTemplate^ template, 
	IInfigoDataSource^ ds, 
	double fThreshold
)

Parameters

template
Type: InfigoSDK..::.InfigoTemplate
The template containing the variable parts.
ds
Type: InfigoSDK..::.IInfigoDataSource
The data source which scheme is used for the mapping.
fThreshold
Type: System..::.Double
The threshold which is used for the similarity measure.

Return Value

Returns the InfigoFieldMapping object which represents the result of the automapping attempt.

See Also