SkipRecord()
Description
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
Syntax
Function SkipRecord()
Parameters:
Parameters:
none
Return value:
Return value:
none
Example:
Example:
Function OnRecord
If Left(DictIn.Field1.value, 8) = "Subtotal" Then this.SkipRecord()
End Function
See also
See also