SkipRecord()

Description

Call this method from your implementation of the OnRecord context methods to indicate that the current output record should not be inserted into the output database table. This function is usually used with a heterogeneous input text when multi-level information should be filtered out in order to insert only a specific level into the output database. 

Syntax

Function SkipRecord()

Parameters:

none

Return value:

none

Example: 

Function OnRecord

If Left(DictIn.Field1.value, 8) = "Subtotal" Then this.SkipRecord()

End Function

See also

GoNext()

TextConverter's Methods