this.IsDelimited()

Description

When using automatic extraction and the "Show all lines" option, IsDelimited separates records extracted by implied delimiters from other text data in the document.

The main distinction between the lines suppressed by default (or shown with the "Show all lines" option) and the rest of the document is that for the rest of the document TextConverter's AI was able to identify implied delimiters.  This function separates the data that IsDelimited from the data that is not.  The example script will use SkipRecord to keep the non-delimited records from the automated extraction.  You can then extract those records manually.

Syntax

Function IsDelimited()

Parameters

none

Return value

boolean - true or false

Example

Function OnRecord

If this.IsDelimited() then

Else

    this.SkipRecord

End If

End Function

See also

TextConverter's Context Methods

OnRecord()

OnStartProcess()

OnSetUp()