Enumerates the different breaking types that occur between chunks of text read out by the FileFilter.

Namespace: FilterLibrary
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public enum CHUNK_BREAKTYPE
Visual Basic
Public Enumeration CHUNK_BREAKTYPE
Visual C++
public enum class CHUNK_BREAKTYPE

Members

Member nameValueDescription
CHUNK_NO_BREAK0 No break is placed between the current chunk and the previous chunk. The chunks are glued together.
CHUNK_EOW1 A word break is placed between this chunk and the previous chunk that had the same attribute. Use of CHUNK_EOW should be minimized because the choice of word breaks is language-dependent, so determining word breaks is best left to the search engine.
CHUNK_EOS2 A sentence break is placed between this chunk and the previous chunk that had the same attribute.
CHUNK_EOP3 A paragraph break is placed between this chunk and the previous chunk that had the same attribute.
CHUNK_EOC4 A chapter break is placed between this chunk and the previous chunk that had the same attribute.

See Also